-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
40 lines (37 loc) · 852 Bytes
/
main.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
body {
background-color: #FFEFD5;
font-family: 'Anonymous Pro', monospace; }
.title {
text-align: center;
width: 100%;
padding-bottom: 2em;
padding-top: 1em; }
.sidebar {
float: left;
width: 20%; }
.sidebar .link > .sidebar-item {
text-align: left;
width: 100%;
padding: 1em;
margin: 1em;
border-right: 1px;
border-bottom: 1px;
border-top: 0px;
border-left: 0px;
border-style: solid;
border-color: gray; }
.sidebar .link:nth-child(even) > .item {
background-color: #36e37bFF; }
.sidebar .link:nth-child(odd) > .item {
background-color: #F5F5DCFF; }
.content {
float: right;
width: calc(70% - 2em);
padding: 1em;
margin: 1em;
padding-left: 2em;
border: 1px solid;
background-color: white;
border-color: gray; }
.content .entry .title {
text-align: center; }