forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (86 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
body, html{
margin: 0;
padding: 0;
font-family: Roboto;
background: #ebeff1;
}
#insert-box, #list-box, h1{
width: 86%;
padding: 3%;
margin-left: auto;
margin-right: auto;
}
.box{
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
margin-bottom: 20px;
background: white;
}
#insert-box h3,
#insert-box input,
#insert-box button{
width: 100%;
}
.box h3{
margin-top: 0;
}
input{
font-size: 16px;
font-weight: lighter;
border: 0;
border-bottom: 1px solid #999;
margin-bottom: 20px;
padding-bottom: 7px;
}
input:focus{
outline: none;
}
button{
background-color: #009688;
outline: none;
border: none;
color: white;
font-size: 16px;
border-radius: 4px;
padding: 1.5%;
cursor: pointer;
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
h1{
display: block;
font-size: 1.17em;
-webkit-margin-before: 1em;
-webkit-margin-after: 1em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
font-weight: bold;
margin: 0 auto;
padding: 3%;
width: 92%;
}
h3{
font-size: 14px;
color: rgba(0, 0, 0, 0.54);
}
ul{
list-style: none;
padding: 0 2%;
display: inline-block;
position: relative;
width: 96%;
}
ul#heroes-list li{
width: 100%;
float: left;
margin-top: 6px;
margin-bottom: 6px;
}
.color-box{
width: 20px;
height: 20px;
float: left;
margin-right: 11px;
border-radius: 2px;
border-width: 1px;
border-style: solid;
border-color: grey;
}