-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
129 lines (104 loc) · 1.66 KB
/
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body{
background-size:100%;
background-color:#fff6d3;
}
#title{
text-align:center;
}
main{
width:80%;
margin: auto;
padding:15px;
}
#section_name{
background-color: #ff9900;
}
pre {
width: 75%;
margin: auto;
padding: 5px;
overflow-y:hidden;
overflow-x:scroll;
}
pre.prettyprint {
padding: 5px;
display: block;
background: #333;
color: #fff;
font-size: medium;
}
pre span{
color:#FFA500;
}
.clearfix:after {
display:block;
clear:both;
}
/*----- Menu Outline -----*/
@media (min-width: 700px){
header {
width:100%;
background:#3e3436;
}
}
@media (max-width: 700px){
header {
display:none;
}
}
.menu {
width:80%;
margin:0px auto;
}
.menu li {
margin:0px;
list-style:none;
}
.menu a {
color:#919191;
}
.menu li:hover > a, .menu .current-item > a {
text-decoration:none;
color:#be5b70;
}
.menu .arrow {
font-size:11px;
line-height:0%;
}
/*----- Top Level -----*/
.menu > ul > li {
float:right;
display:inline-block;
position:relative;
}
.menu > ul > li > a {
padding:10px 40px;
display:inline-block;
}
/*----- Bottom Level -----*/
.menu li:hover .sub-menu {
z-index:1;
opacity:1;
}
.sub-menu {
width:160%;
padding:5px 0px;
position:absolute;
top:100%;
left:0px;
z-index:-1;
opacity:0;
transition:opacity linear 0.15s;
}
.sub-menu li {
display:block;
font-size:16px;
}
.sub-menu li a {
padding:10px 30px;
display:block;
}
nav_tag{
color: #1BE51B;
float: right;
}