-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
60 lines (60 loc) · 835 Bytes
/
styles.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
/* CSS resets */
*,
body,
div,
p {
padding: 0;
margin: 0;
font-family: "Open Sans", sans-serif;
}
header {
background-color: rgb(96 125 139);
height: 50px;
}
nav > ul {
display: flex;
padding: 10px;
justify-content: space-evenly;
}
nav > ul > li {
list-style-type: none;
}
nav > ul > li > a {
text-decoration: none;
color: #ffffff;
}
#container {
padding: 8px;
display: flex;
flex-direction: column;
align-items: center;
}
#aboutme {
font-size: 20px;
}
#aboutme h2 {
color: #33805b;
}
#para {
margin: 10px 0px 60px 0px;
}
#para p {
padding: 20px 0px 0px 0px;
}
#skills {
align-self: flex-start;
}
#skills p {
color: #33805b;
font-size: 20px;
font-family: sans-serif;
}
@media (min-width: 800px) {
#aboutme {
width: 800px;
font-size: 36px;
}
#skills {
width: 800px;
}
}