blob: d0e315727ffe179064bbb62b15029191642d1389 (
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
|
#tut-wrapper {
text-align: center;
}
table.padded td:first-child {
padding-right: 5px;
}
a.next {
color: #ddd;
background-color: #334;
padding: 3px 10px;
border-radius: 5px;
text-decoration: none;
border: 1px solid #446;
box-shadow: 0 0 1px #445;
float: right;
margin: 0 10px;
cursor: pointer;
transition:background .3s;
-webkit-transition:background .3s;
-o-transition:color .3s;
-moz-transition:color .3s;
}
a.next:hover {
background-color: #446;
border: 1px solid #223;
}
a.next.disabled, a.next.disabled:hover {
color: #447;
background-color: #557;
border: 1px solid #446;
cursor: default;
}
.hidden {
display: none;
}
a.flash {
background-color: #a95;
}
input.flash {
background-color: #5a9;
}
input[onclick="doSend(1)"] {
border-radius: 3px;
border: 1px solid #555;
}
a.flash, input.flash, input[onclick="doSend(1)"] {
transition:background .3s;
-webkit-transition:background .3s;
-o-transition:color .3s;
-moz-transition:color .3s;
}
|