-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.css
97 lines (83 loc) · 1.64 KB
/
index.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
* {
margin-left: auto;
margin-right: auto;
}
body {
text-align: center;
font-family: BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Helvetica Neue', sans-serif;
}
li {
width: fit-content;
}
#start {
border: 1px solid transparent;
background-color: #30bcd5;
border-radius: 40px;
font-size: 1.2rem;
padding: .6rem 1.4rem;
transition: background-color .1s ease;
cursor: pointer;
}
#start:hover {
background-color: #28acc3;
}
#get-started {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
}
#open-efi-container {
display: grid;
grid-template-columns: 1fr auto;
width: 100%;
margin-top: 10px;
}
#open-efi {
margin-right: 12px;
border: 1px solid #545050;
border-radius: 5px;
display: none;
padding: 3px 10px;
}
.card {
display: grid;
grid-template-columns: auto auto 1fr auto;
height: 50px;
margin-top: 2%;
width: 95%;
margin-left: auto;
margin-right: auto;
border-radius: 7px;
}
.card img {
height: 50px;
}
.card > div:nth-child(2) {
margin-top: auto;
margin-bottom: auto;
margin-left: 10px;
text-align: left;
width: 100%;
}
.card > div:nth-child(2) > div:nth-child(1) {
font-weight: 600;
font-size: large;
}
.card > div:nth-child(2) > div:nth-child(2) {
font-weight: 300;
font-size: small;
}
@media (prefers-color-scheme: light) {
.card {
background-color: #edebea;
border: 1px solid #e0dedd;
}
}
@media (prefers-color-scheme: dark) {
.card {
border: 1px solid #545050;
background-color: #363232;
}
}