-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (107 loc) · 2.13 KB
/
style.css
File metadata and controls
110 lines (107 loc) · 2.13 KB
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
body {
width: 600px;
margin: 0 auto;
font-size: 18px;
font-family: 'PT Sans', Verdana;
color: white;
background: #7B0A04; /* @color-red-dark */
text-align: justify;
}
body.captcha-example {
color: #7B0A04; /* @color-red-dark */
background: #F6D29C;; /* @color-orange-bg */
}
input,
textarea {
outline-color: white;
background: #dddddd;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
padding: 5px 7px;
font-family: 'PT Sans', Verdana;
font-size: 12px;
outline: none;
}
input:hover,
textarea:hover {
background-color: white;
font-family: 'PT Sans', Verdana;
}
input,
textarea,
#captcha_container img {
border: 1px solid rgba(0,0,0,.5);
}
#captcha_container img {
min-height: 50px;
max-width: 200px;
}
#captcha_answer {
width: 187px;
}
textarea {
resize: vertical;
}
input[type="submit"] {
cursor: pointer;
}
input[type="submit"]:active {
background:white;
border: 0;
}
input[type="text"] {
width: 100%;
}
h3 {
margin-bottom: 20px;
}
h4 {
margin: 20px 0 10px 0;
}
h4 a {
color: white;
}
table {
width: 100%;
}
th {
text-align: right;
vertical-align: top;
padding-right: 10px;
}
td {
text-align: center;
}
.text-right { text-align: right }
.success { color: green }
.failure { color: red }
.unknown { color: #C0C000 }
.success, .failure, .unknown { font-weight: bold }
.hidden { display: none }
#menu, #message { width: 90% }
.text-right { text-align: right }
.btn-refresh {
display: inline-block;
width: 32px;
height: 32px;
border: 1px solid black;
margin: 0 0 9px -34px;
background-repeat: no-repeat;
background-position: left center;
}
.btn-refresh:hover {
background-position: -32px center;
}
.btn-refresh:active {
background-position: right center;
}
.btn-refresh.btn-state-refresh {
background-image: url(https://keeep.us/static/images/refresh.png);
cursor: pointer;
}
.btn-refresh.btn-state-loading {
background-image: url(https://keeep.us/static/images/page-loader.gif);
cursor: default;
background-position: left center !important;
}