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
|
body {
background-image: url("/quiz-bunny/bunny.jpg");
background-position: center top;
background-repeat: no-repeat;
}
h1, h2, h3, h4, li, span {
text-shadow: 0px 0px 5px #000;
color: white;
}
td, th{
text-align: left;
background-color: white;
color: black;
}
.center{
margin: auto;
width: 400px;
padding: 10px;
}
input {
margin-top: 20px;
}
input[type=text]{
border: none;
border-bottom: 1px solid #ccc;
padding: 5px;
}
input[type=button]{
border: none;
padding: 8px 8px;
cursor: pointer;
background-color: coral;
color: white;
white-space: normal;
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
input[type=button]:disabled {
color: #eeeeee;
background-color: #dddddd;
}
input[type=button]:disabled:hover {
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
cursor: default;
background-color: #dddddd;
}
input[type=button]:hover{
box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
background-color: rgb(255, 179, 151);
}
span {
margin-right: 1em;
}
.leave {
position: absolute;
bottom: 5px;
}
|