-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
59 lines (49 loc) · 820 Bytes
/
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
body {
font-family: 'Open Sans', sans-serif;
background-color: #283b52;
}
.main-content {
text-align: left;
margin-left: 15vw;
margin-top: 17vh;
padding: 10px;
}
.profile-pic {
height: 150px;
width: 150px;
border-radius: 70px;
}
.content {
font-size: 1.2rem;
text-align: left;
width: 35vw;
color: #ffffff;
}
.content > h2 {
font-family: 'Poppins', sans-serif;
font-size: 2rem;
font-weight: 400;
}
.link {
padding-top: 10vh;
}
.link > a {
color: #ffffff;
}
.color {
color: #ffbf00;
}
@media only screen and (max-width: 800px) {
.profile-pic {
height: 100px;
width: 100px;
}
.main-content {
padding: 10vh 0;
margin: auto;
width: 70%;
}
.content {
width: 100%;
}
}