-
Notifications
You must be signed in to change notification settings - Fork 1
/
noodle.css
120 lines (98 loc) · 1.48 KB
/
noodle.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body {
font-family: Sans;
}
h2.header {
font-weight: lighter;
width: 100%;
border-bottom: 1px solid #ddd;
}
h3.title {
font-weight: lighter;
}
.container {
margin: 30px 20px;
}
.poll-name {
font-weight: normal;
border-bottom: 1px solid #ddd;
margin-bottom: 10px;
}
.poll-desc {
font-family: monospace;
margin-bottom: 20px;
padding: 5px 5px 30px 5px;
background-color: #ddd;
}
.opt-edit.btn {
float: right;
border: 1px solid #bbb;
}
.table {
border-collapse: collapse;
margin-top: 25px;
width: 100%;
}
.table td {
padding-bottom: 5px;
padding-top: 5px;
border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd;
}
.table .btn {
float: right;
}
.table a {
text-decoration: none;
}
.table a, .table a:visited, .table a:active, .table a:link {
color: #819FF7;
}
.table a:hover {
color: #045FB4;
}
.btns {
margin-top: 10px;
}
.btn {
text-decoration: none;
background-color: #eee;
color: #111;
padding: 3px 6px 3px 6px;
border: none;
font-size: 16px;
margin-right: 8px;
}
a.btn.td-edit {
color: #819FF7;
}
a.btn.td-delete {
color: #819FF7;
}
.input {
font-size: 14px;
margin-right: 5px;
padding-left: 5px;
}
.error {
background-color: #F78181;
padding: 5px;
}
.voters {
padding-left: 20px;
}
.true {
background-color: #BCF5A9;
color: #fff;
text-align: center;
}
.false {
background-color: #F5BCA9;
}
.checker {
text-align: center;
}
.count {
text-align: center;
background-color: #819FF7;
color: #fff;
}