-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
113 lines (94 loc) · 1.54 KB
/
style.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
* {
font-family: "Inter", sans-serif;
}
.landing-body {
background: #f4f7f6;
}
.card {
border-radius: .5em !important;
margin: 10px;
}
.btn-check:focus+.btn,
.btn:focus {
outline: 0;
box-shadow: none;
}
.head {
background: #EFEFEF;
}
.container {
border-radius: 6px;
max-width: 65%;
}
.resource-btn {
font-size: 1em !important;
padding: 0.1em;
margin: 0.1em;
}
.logos img {
max-height: 7vh;
margin: 12px;
margin-top: 0;
}
body>.container {
max-width: 80ch;
}
.display-font {
font-family: 'Staatliches', serif !important;
font-size: 2em;
}
.disclaimer {
font-size: 0.8em;
}
label[for='information'] {
font-weight: 600;
}
#copy-alert {
opacity: 0;
width: 20vw;
height: 10vh;
position: fixed;
z-index: 2000;
bottom: 1em;
right: 1em;
}
@keyframes fadein {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 1;
}
}
@media not all and (hover: none) {
.btn:hover {
background: #198754;
color: #f8f9fa;
}
}
@media only screen and (max-aspect-ratio: 1/1) {
body>.container {
max-width: max-content;
}
.display-font {
font-size: 1.5em;
}
#copy-alert {
opacity: 0;
max-width: 100%;
max-height: 100%;
min-width: 90%;
min-height: 10%;
width: 90%;
height: 10%;
position: fixed;
z-index: 2000;
bottom: 1em;
right: 5%;
left: 5%;
bottom: 2%;
}
}