-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (60 loc) · 1017 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
67
68
69
70
71
72
body {
margin: 0;
font-family: Arial, sans-serif;
color: #333;
}
.container {
display: grid;
grid-template-columns: 30% 70%;
height: 100vh;
}
.sidebar {
background-color: #003366;
color: white;
padding: 20px;
}
.sidebar h1 {
font-size: 24px;
margin-top: 0;
}
.sidebar img {
width: 150px;
height: 150px;
border-radius: 50%;
display: block;
margin: 20px auto;
}
.sidebar .section {
margin-bottom: 20px;
}
.sidebar .section h2 {
font-size: 18px;
margin-bottom: 10px;
border-bottom: 2px solid white;
padding-bottom: 5px;
}
.content {
padding: 20px;
}
.content h2 {
font-size: 20px;
margin-bottom: 10px;
border-bottom: 2px solid #003366;
padding-bottom: 5px;
color: #003366;
}
.content .section {
margin-bottom: 20px;
}
.content ul {
padding-left: 20px;
}
.content ul li {
margin-bottom: 5px;
}
.footer {
background-color: #003366;
height: 20px;
width: 100%;
color: white;
}