-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (56 loc) · 960 Bytes
/
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
#sideNav {
text-align: center;
position: fixed;
top: 0;
left: 0;
display: flex;
flex-direction: column;
width: 17rem;
height: 100vh;
}
#header img {
width: 80px;
}
.institution {
font-size: 1rem;
color: #46494d;
font-family: 'Saira Extra Condensed', sans-serif;
}
.degree {
text-transform: uppercase;
font-weight: 500;
font-size: 1.5rem;
font-family: 'Saira Extra Condensed', sans-serif;
}
.text-years {
color: #bd5d38;
}
.description {
font-size: 0.7rem;
}
.list-skills {
margin: 0 0;
}
.list-skills ul li::marker {
color: blue;
font-size: 1rem;
}
.list-skills ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
margin-bottom: 50px;
}
.list-skills li {
width: 110px;
height: 15px;
text-align: left;
margin-bottom: 25px;
font-size: 0.8rem;
}