-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
88 lines (77 loc) · 1.26 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
88
html, body {
margin: 0px;
padding: 0px;
}
* {
margin: 0px;
padding: 0px;
}
.container-fluid {
padding: 16px;
}
.page-title {
font-family: Verdana;
font-size: 24px;
}
.pull-right {
float: right;
}
.btn {
font-size: 14px;
background-color: #fff;
color: #000;
border: 1px solid #ccc;
max-height: 32px;
height: 32px;
padding: 8px 16px;
border-radius: 5px;
font-weight: 300;
vertical-align: middle;
text-decoration: none;
}
.inner-app {
width: 66%;
margin: auto;
}
.form-control {
box-sizing: border-box;
width: 100%;
height: 32px;
max-height: 32px;
background-color: #fff;
color: #000;
border: 1px solid #ccc;
border-radius: 5px;
padding: 0px 8px;
}
.list-group {
width: 100%;
}
.list-group :first-child {
border-top: 1px solid #ccc;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.list-group :last-child {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.list-group-item {
box-sizing: border-box;
font-family: Verdana;
width: 100%;
display: block;
height: 32px;
max-height: 32px;
line-height: 32px;
background-color: #fff;
color: #000;
border: 1px solid #ccc;
border-top: none;
vertical-align: middle;
text-decoration: none;
padding: 0px 8px;
}
.list-group-item:hover {
background-color: #f3f3f3;
}