This repository was archived by the owner on Jul 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
128 lines (106 loc) · 2.2 KB
/
styles.css
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
:root {
--main-color: #60cdff;
--background-color-level-1: #f9f9f9;
--background-color-level-2: #f5f5f5;
--background-color-level-3: #f0f0f0;
--background-color-level-4: #e6e6e6;
--color: #1a1a1a;
--border-color: #eaeaea;
--angular-color: #dd1b16;
--react-color: #61dbfb;
--vue-color: #41b883;
}
*,
::after,
::before {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: var(--background-color-level-1);
color: var(--color);
}
section {
padding: 1em;
border-top-width: 1em;
border-top-style: solid;
}
app-root > section {
border-top-color: var(--angular-color);
}
#root > section {
border-top-color: var(--react-color);
}
#app > section {
border-top-color: var(--vue-color);
}
button {
padding: 1em;
border: 1px solid var(--border-color);
border-radius: 0.375em;
background: var(--background-color-level-1);
color: var(--color);
font-weight: bold;
white-space: nowrap;
cursor: pointer;
}
button:active {
background-color: var(--background-color-level-4);
}
button:not(:active):hover {
background-color: var(--background-color-level-3);
}
#actions {
display: flex;
flex-wrap: wrap;
gap: 1em;
padding: 1em;
background: var(--background-color-level-2);
border: 1px solid var(--border-color);
border-radius: 0.5em;
}
table {
border-spacing: 0;
}
#results {
width: 100%;
min-height: calc(36px + 0.5em);
margin-top: 1em;
padding: 0.5em;
background: var(--background-color-level-2);
border: 1px solid var(--border-color);
border-radius: 0.5em;
}
#results tr > td {
padding: 0.5em 1em;
cursor: default;
}
#results tr:not(:last-of-type) > td {
border-bottom: 1px solid var(--border-color);
}
#results tr > td:not(:first-of-type) {
border-left: 1px solid var(--border-color);
}
#results tr > td:nth-child(1) {
width: 10%;
text-align: end;
}
#results tr > td:nth-child(3) {
width: 15%;
text-align: center;
text-transform: uppercase;
}
#results tr > td:nth-child(2) > a,
#results tr > td:nth-child(3) > a {
cursor: pointer;
}
#results tr > td:nth-child(3) > a {
font-weight: bold;
}
#results tr > td:nth-child(3) > a:hover {
color: var(--main-color);
}
#results tr.selected {
background: var(--background-color-level-4);
}