-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (67 loc) · 1.12 KB
/
style.css
File metadata and controls
82 lines (67 loc) · 1.12 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
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
body {
margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
font-family: Helvetica, Arial, sans-serif
}
ul {
padding-left: 0;
}
li {
list-style: none;
padding-left: 1.25rem;
position: relative;
}
li::before {
left: 0;
position: absolute;
}
ul li::before {
content: "●";
}
#header {
background-color: #1e81b0;
height: 50px;
width: 100%;
}
#body_container {
display: flex;
padding-left: 5px;
padding-right: 5px;
}
@media screen and (min-width:800px) {
#body_container {
display: flex;
padding-left: 125px;
padding-right: 125px;
}
}
#left_container {
margin-right: 25px;
margin-left: 25px;
}
#picture_container {
width: 200px;
height: 200px;
margin-top: 25px;
margin-bottom: 25px;
}
#right_container {
width: 200px;
margin-right: 25px;
flex: none;
}
@media screen and (max-width: 600px) {
#right_container { display: none; }
#picture_container { display: none; }
}
img {
border-radius: 50%;
border: 6px solid #1e81b0;
}