-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
106 lines (82 loc) · 1.83 KB
/
index.css
File metadata and controls
106 lines (82 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
:root {
--background-color: #131517;
--container-color: #1A1C20;
--accent-color: #27282C;
--text-title-color: #FAF9F6;
--text-paragraph-color: #727478;
--button-color: #27282C;
--button-transparent-color: rgba(39, 40, 44, 0.5);
--button-hover-color: #35373B;
--highlight-color: #EF5552;
--highlight-hover-color: #F56A67;
--card-radius: 15px;
--small-button-radius: 5px;
--medium-button-radius: 10px;
}
body, html {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
background-color: var(--background-color);
font-family: monospace;
}
body {
display: flex;
flex-direction: column;
gap: 1rem;
padding: 1rem;
width: calc(100% - 2rem);
height: calc(100% - 2rem);
color: white;
}
#results {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
#results details {
display: flex;
flex-direction: column;
gap: 0.5rem;
padding: 0.5rem;
background-color: var(--accent-color);
border-radius: var(--medium-button-radius);
}
#results summary {
cursor: pointer;
}
textarea {
height: 100%;
background-color: var(--button-color);
color: var(--text-title-color);
border: transparent;
padding: 0.25rem;
}
.index {
display: flex;
justify-content: center;
align-items: center;
}
.selector {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
width: 150px;
height: 30px;
background-color: var(--container-color);
padding: 2rem;
}
.selector a {
color: var(--text-title-color);
text-decoration: none;
font-weight: bold;
padding: 0.5rem;
background-color: var(--button-color);
border-radius: var(--small-button-radius);
}
.selector a:hover {
background-color: var(--button-hover-color);
}