-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
80 lines (69 loc) · 1.11 KB
/
index.css
File metadata and controls
80 lines (69 loc) · 1.11 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
* {
padding: 0;
margin: 0;
}
body {
background: #eee;
}
ul,
li {
list-style: none;
}
a {
text-decoration: none;
color: #333;
}
button {
border: 0;
padding: 10px 15px;
background: #5e5ef7;
color: #fff;
cursor: pointer;
font-size: 14px;
letter-spacing: 2px;
border-radius: 4px;
margin: 10px 0;
transition: all .5s;
box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
}
h2{
margin: 20px 0;
}
.clear {
clear: both;
}
pre {
max-width: 80%;
padding: 20px;
font-weight: 600;
line-height: 150%;
background: #fff;
box-shadow: 5px 5px 30px rgba(0,0,0,.05);
}
.nav {
position: fixed;
z-index: 99;
height: 100vh;
min-width: 12%;
background: #fff;
box-shadow: 5px 5px 30px rgba(0, 0, 0, .1);
}
.nav ul li a {
display: inline-block;
padding: 10px 20px;
}
.title {
margin-bottom: 5px;
padding-bottom: 5px;
border-bottom: 1px solid #ccc;
box-sizing: border-box;
text-align: center;
}
.title h2 {
display: inline-block;
padding: 10px 20px;
}
.main {
float: right;
width: 85%;
}