-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (55 loc) · 1.32 KB
/
style.css
File metadata and controls
56 lines (55 loc) · 1.32 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
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
#inputHolder {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.7);
height: 45px;
}
input{
display: inline-block;
position: absolute;
left: 5px;
right: 90px;
top: 8px;
height: 30px;
padding: 0 10px;
}
button {
position: absolute;
right: 5px;
top: 8px;
margin: 0;
display: inline-block;
-webkit-appearance: none;
height: 30px;
width: 80px;
padding: 0px 20px;
background: white;
color: white;
border-radius: 5px;
font-weight: bold;
font-size: 15px;
border: 1px solid #b5bdc8;;
background: #b5bdc8;
background: -moz-linear-gradient(top, #b5bdc8 0%, #828c95 36%, #28343b 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b5bdc8), color-stop(36%,#828c95), color-stop(100%,#28343b));
background: -webkit-linear-gradient(top, #b5bdc8 0%,#828c95 36%,#28343b 100%);
background: -o-linear-gradient(top, #b5bdc8 0%,#828c95 36%,#28343b 100%);
background: -ms-linear-gradient(top, #b5bdc8 0%,#828c95 36%,#28343b 100%);
background: linear-gradient(to bottom, #b5bdc8 0%,#828c95 36%,#28343b 100%);
}
ul {
list-style: none;
padding: 0;
}
li {
background: rgba(0,0,0,0.2);
border: 1px solid gray;
margin-bottom: 5px;
padding: 10px;
}
li:first-child {
background: rgba(0,255,0,0.2);
}