-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
86 lines (66 loc) · 1.09 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
@font-face {
font-family: social;
src: url('fonts/social.otf');
}
@font-face {
font-family: ubuntumono;
src: url('fonts/UbuntuMono-Regular.ttf');
}
h1 {
font-size: 5vw;
margin: 1vw;
}
p {
font-size: 2vw;
}
body {
height: 100%;
width: 100%;
margin: 0;
font-family: "ubuntumono";
background-color: #f5deb3;
}
.centered {
display: flex;
width: auto;
height: 100vh;
text-align: center;
justify-content: center;
flex-direction: column;
}
.links {
text-decoration: underline;
color: blueviolet;
font-size: 5vw;
}
.social-media-list {
flex-direction: row;
font-family: "social";
font-size: 5vw;
}
a {
text-decoration: inherit;
color: inherit;
}
@media screen and (max-width: 1024px) {
h1 {
font-size: 10vw;
}
p {
font-size: 3vw;
}
.social-media-list {
font-size: 9vw;
}
}
@media screen and (max-width: 480px) {
h1 {
font-size: 12vw;
}
p {
font-size: 5vw;
}
.social-media-list {
font-size: 22vw;
}
}