blob: 3209cef0cf63a0780f058610cd8d1e87931d191f (
plain)
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
121
122
123
124
125
126
127
128
|
body{
background-color:#2c3e50;
color:white;
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 20px;
}
#title {
font-weight: bold;
font-size: 40px;
}
#subtitle {
font-style: italic;
}
.form-name {
font-weight: 700;
}
.form-input {
float: right;
margin-left: 40px;
}
.addButton {
margin-top: 20px;
background-color:#599bb3;
-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
display:inline-block;
cursor:pointer;
color:#ffffff;
padding:8px 18px;
text-decoration:none;
}
.addButton:hover {
background-color:#408c99;
}
.addButton:active {
position:relative;
top:1px;
}
#container_main{
width:400px;
margin-top:40px;
margin-left:auto;
margin-right:auto;
text-align: center;
}
td {
text-align: left;
}
#que{
margin-top:50px;
background-color: #34495e;
font-weight: 300;
}
#que table,#que th,#que td{
border:1px solid white;
}
#que td,th{
min-width: 100px;
padding-left:10px;
padding-right:10px;
}
#que tr:nth-child(2){
background-color: #16a085;
}
.removeButton {
margin-top: 20px;
background-color:#c03a2b;
-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
display:inline-block;
cursor:pointer;
color:#ffffff;
padding:8px 18px;
text-decoration:none;
}
.removeButton:hover {
background-color:#408c99;
}
.removeButton:active {
position:relative;
top:1px;
}
.centered-table {
margin-left: auto;
margin-right: auto;
}
#adminscreen{
border:3px solid #202020;
font-size:60px;
padding: 10px;
width:400px;
margin-left:auto;
margin-top:50px;
margin-right:auto;
padding-left:20px;
padding-right:20px;
}
#adminscreen td {
padding-left:10px;
}
.outdated{
background-color: #c0392b;
}
.updated{
background-color: #16a085;
}
|