-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
56 lines (56 loc) · 933 Bytes
/
main.css
File metadata and controls
56 lines (56 loc) · 933 Bytes
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
body, button {
background-color: white;
border: none;
text-align: center;
font-family: arial;
}
body, button, a {
color: black;
text-decoration: none;
}
.header, .footer{
left: 0;
width: 100%;
}
.header {
position: relative;
top: 0;
}
.footer {
position: fixed;
bottom: 0;
padding-bottom: 10px;
}
.title {
padding: 58px 0 20px;
font-size: 4em;
}
#pubIP {
font-size: 2.2em;
font-weight: bold;
transition: 0.2s;
padding: 8px;
}
#pubIP:hover {
color: white;
background-color: black;
transition: 0.2s;
}
@media (prefers-color-scheme: dark) {
body, button {
background-color: black;
}
body, button, a {
color: white;
}
#pubIP:hover {
color: black;
background-color: white;
}
}
@media screen and (max-height:510px) {
.footer {
position: relative;
margin-top: 82px;
}
}