forked from hackthepart/Jarvis
-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
73 lines (63 loc) · 1.05 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
* {
box-sizing: border-box;
}
body{
background-color: #000000;
font-family: Roboto Condensed,sans-serif;
}
ul {
margin: 0;
padding: 0;
}
ul li {
cursor: pointer;
position: relative;
padding: 12px 8px 12px 40px;
font-size: 18px;
transition: 0.2s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
ul li:nth-child(odd) {
background: #f9f9f9;
}
ul li:hover {
background: #ddd;
}
.header {
position: relative;
top: 27%;
color: #02FEFF;
text-align: center;
}
.header:after {
content: "";
display: table;
clear: both;
}
input {
border: none;
width: 60%;
padding: 10px;
margin-left: 25px;
float: left;
font-size: 16px;
}
.addBtn {
padding: 10px;
width: 25%;
background: #02FEFF;
color: #000000;
float: left;
text-align: center;
font-size: 100%;
height: 38px;
font-weight: bolder;
cursor: pointer;
transition: 0.3s;
}
.addBtn:hover {
background-color: #bbb;
}