-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
executable file
·70 lines (59 loc) · 1.12 KB
/
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
61
62
63
64
65
66
67
68
69
70
html, body {
width: 100%;
height: 100%;
box-sizing: border-box;
margin: 0;
padding: 0;
background: #333;
}
/* preview section */
.page-preview-section {
position: relative;
box-sizing: border-box;
float: left;
width: 80%;
height: 100%;
background: #111;
}
.page-preview-image {
height: 100%;
width: 100%;
background-color: #000;
}
/* navigation or article list section */
nav {
box-sizing: border-box;
width: 20%;
height: 100%;
float:right;
background: #333;
color: #fff;
overflow: scroll;
padding: 20px;
font-family: Arial;
font-size: 14px;
}
nav > .btn-100 {
width: 100%;
box-sizing: border-box;
padding: 1em;
background-color: transparent;
border: 2px solid #222;
border-radius: 5px;
font-size: 14px;
}
.article-list-section {
box-sizing: border-box;
padding: 1em 0;
margin: 0;
}
.article-list-section > li {
box-sizing: border-box;
display: block;
padding: 1em;
width: 100%;
border-radius: 5px;
}
.article-list-section > li:hover {
background-color: rgba(0, 0, 0, .5);
}