-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (42 loc) · 740 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (42 loc) · 740 Bytes
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
body {
background-color: #030f11;
font-family: 'Trebuchet MS', sans-serif;
margin: 0;
padding: 0;
}
#container {
width: 80%;
margin: 10px auto;
border: 2px solid;
background-color: rgb(255, 255, 255);
padding: 100px;
box-shadow: 0 0 10px #cd481b;
}
.subtitle {
color: lightgreen;
font-style: italic;
}
#main {
flex: display
}
#sidebar {
width: 25%;
background-color: lightgreen;
padding: 15px;
border-radius: 8px;
font-weight: bold;
}
#content {
margin-left: 5%;
}
.date {
color: cyan;
font-weight: bold;
}
.post {
border: 2px solid whitesmoke;
background-color: lightgreen;
padding: 15px;
margin-bottom: 15px;
border-radius: 8px;
}