-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
98 lines (86 loc) · 1.38 KB
/
Copy pathmain.css
File metadata and controls
98 lines (86 loc) · 1.38 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
* {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
body {
padding: 0px;
margin: 0px;
}
nav {
background-color: #0c0;
margin: 0px;
padding: .5em;
color: white;
}
h1 {
float: left;
padding: 0;
margin: 0;
position: relative;
}
.clearfix:after {
content: ".";
visibility: hidden;
display: block;
height: 0;
clear: both;
}
.btn_container {
float: right;
position: relative;
overflow: hidden;
width: 9em;
padding: 10px;
margin: 1em;
border: 1px solid #060;
border-radius: 10px;
background-color: #090;
}
.btn_container .real_btn {
top: 0;
left: 0;
margin: 0;
padding: 5em;
font-size: 10px;
cursor: pointer;
cursor: hand;
opacity: 0;
filter: alpha(opacity=0);
position: absolute;
}
.log_line {
cursor: pointer;
cursor: hand;
}
.input-search-string {
display: inline-block;
text-align: left;
font-size: 100%;
overflow: hidden;
padding: 10px;
margin: .2em;
border: 1px solid #060;
border-radius: 10px;
background-color: #090;
color: white;
}
#navbar {
position: fixed;
width: 100%;
top: 0;
left: 0;
}
#searchlist_box {
text-align: right;
display: none;
float: right;
position: relative;
overflow-y: auto;
width: 60%;
max-height: 20em;
}