-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
98 lines (85 loc) · 1.63 KB
/
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
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
#search input{
border: none;
padding: 10px;
margin: 10px;
height: 20px;
width: 500px;
border:1px solid #eaeaea;
outline:none;
}
#search input:hover {
border-color: #a0a0a0 #b9b9b9 #b9b9b9 #b9b9b9;
}
#search input:focus {
border-color:#4d90fe;
}
#search input[type="submit"] {
border-radius: 2px;
background: #f2f2f2;
border: 1px solid #f2f2f2;
color: #757575;
cursor: default;
font-size: 14px;
font-weight: bold;
width: 100px;
padding: 0 16px;
height:36px;
}
#search input[type="submit"]:hover {
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
background: #f8f8f8;
border: 1px solid #c6c6c6;
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
color: #222;
}
body {
margin: 0;
}
#search {
text-align: center;
background-color: #eeeeff;
margin-left: 15%;
}
#sidebar {
position:absolute;
height: 100%;
width: 15%;
background-color: #aaaaff;
}
#content {
margin-left: 16%;
margin-top: 1em;
}
.hidden {
display: none !important;
}
input[type="file"] {
display: none;
}
#filename {
margin-right: 10px;
color: #077;
}
.custom-file-upload {
margin-right: 20px;
}
#information {
position: absolute;
right: 0;
top: 100px;
min-height: 200px;
width: 500px;
overflow-x: auto;
opacity: 0.5;
border: 1px solid black;
border-radius: 3px;
padding: 15px;
white-space: pre;
}
/*.custom-file-upload:hover {*/
/*box-shadow: 0 1px 1px rgba(0,0,0,0.1);*/
/*background: #f8f8f8;*/
/*border: 1px solid #c6c6c6;*/
/*box-shadow: 0 1px 1px rgba(0,0,0,0.1);*/
/*color: #222;*/
/*}*/