forked from LynxGeekNYC/fail2ban-web-interface
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (101 loc) · 1.94 KB
/
style.css
File metadata and controls
121 lines (101 loc) · 1.94 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
111
112
113
114
115
116
117
118
119
120
121
* {
font-family : -apple-system,system-ui,sans-serif;
line-height : 1.15;
}
h1, h2 {
margin-bottom: 0px;
}
.header {
position: sticky;
top: 0;
z-index: 999;
background-color: #aca;
padding-left: 10px;
padding-bottom: 10px;
}
footer {
color : #666;
font-style : italic;
font-weight : normal;
font-size: 0.75em;
}
/* TABLES */
table {
background-color : #eee;
white-space : nowrap;
border : #aaa solid 1px;
padding : 2px;
}
td {
padding-left : 5px;
padding-right : 5px;
}
.bold {
font-weight : bold;
background-color : #aca;
}
.highlight:hover {
background-color : #cac;
opacity : 0.75;
}
/* MESSAGES */
.msg_ok {
color : #080;
}
.msg_er {
color : #800;
}
.msg_gr {
color : #666;
font-style : italic;
font-weight : normal;
}
/* BUTTONS */
button > img {
border : 0;
vertical-align : bottom;
}
.button {
appearance: none;
background-color: #2ea44f;
border: 1px solid rgba(27, 31, 35, .15);
border-radius: 6px;
box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
box-sizing: border-box;
color: #fff;
cursor: pointer;
display: inline-block;
font-size: 14px;
font-weight: 600;
line-height: 20px;
padding: 6px 16px;
position: relative;
text-align: center;
text-decoration: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: middle;
white-space: nowrap;
}
.button:focus:not(:focus-visible):not(.focus-visible) {
box-shadow: none;
outline: none;
}
.button:hover {
background-color: #2c974b;
}
.button:focus {
box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
outline: none;
}
.button:disabled {
background-color: #94d3a2;
border-color: rgba(27, 31, 35, .1);
color: rgba(255, 255, 255, .8);
cursor: default;
}
.button:active {
background-color: #298e46;
box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
}