-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (69 loc) · 1.06 KB
/
style.css
File metadata and controls
88 lines (69 loc) · 1.06 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
body{
margin: 5% auto;
width: 60%;
font-size: 1.2rem;
line-height: 1.8rem;
font-family: 'Oxygen', sans-serif;
color: rgb(87, 87, 87);
}
body.darkmode {
background: rgb(57, 57, 57);
color: rgb(227, 227, 227);
}
body.darkmode a{
color: rgb(227, 227, 227);
}
.is-hidden{
display: none;
}
a{
color: rgb(87, 87, 87);
font-size: 25px;
}
header{
display: flex;
justify-content: space-between;
margin-bottom: 20px;
font-size: 20px;
}
#theme {
font-size: 25px;
}
#theme:hover{
cursor: pointer;
}
.landing{
display: flex;
align-items: center;
font-size: 1rem;
}
.is-avatar{
border-radius: 50%;
margin-left: 100px;
}
main a{
font-size: 20px;
}
.colums{
display: flex;
}
footer{
margin-top: 50%;
text-align: center;
}
.social a{
font-size: 1.3em;
padding: 0.5rem;
}
@media only screen and (max-width: 760px) {
body{
width: 90%;
}
.landing{
display: block;
font-size: 0.9rem;
}
.colums{
display: block;
}
}