-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminify.css
116 lines (107 loc) · 1.95 KB
/
minify.css
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
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
vertical-align: middle;
background-repeat: no-repeat;
background-position: top right;
margin: 0;
padding: 0;
}
body {
font-family: "Optima", "Lucida Grande", "Verdana", "Tahoma", sans-serif, "arial";
font-size: xx-small;
}
#content {
margin-top: 5em;
font-size: 1.25em;
}
.active {
background-color: #ccc;
}
#main {
margin: 0 auto;
}
textarea#hostlist {
border: 3px solid #babaff;
padding: 5px;
display: block;
margin-bottom: 1em;
font-family: "Optima", "Lucida Grande", "Verdana", "Tahoma", "Arial";
font-size: 1.25em;
}
#content button {
padding: 0.5em;
width: 10em;
background-color: #ccc;
font-weight: bold;
}
#content button:hover {
background-color: #33F;
}
.right {
float: right;
}
.left {
float: left;
}
#result {
font-size: 2em;
display: inline-block;
position: absolute;
padding: 1.5em;
background-color: #BABAFF;
border: 2px solid black;
border-radius: 5px;
overflow: visible;
white-space: nowrap;
}
.close {
width: 29px;
height: 29px;
position: absolute;
display: block;
z-index: 1;
}
#buttons {
float: right;
position: relative;
left: -50%;
text-align: left;
}
#buttons ul {
float: left;
position: relative;
left: 50%;
list-style: none;
}
#buttons li {
float: left;
position: relative;
}
#buttons a {
text-decoration: none;
color: black;
margin: 1em;
padding: 0.5em 2em;
background: #BABAFF;
border-radius: 4px;
font-size: 1.25em;
float: left;
text-align: center;
}
#buttons a:hover {
background-color: #777;
}
a.feedback {
padding: 1em 3em;
text-decoration: none;
font-size: 1.2em;
background-color: #BABAFF;
position: fixed;
border-radius: 4px;
font-weight: bold;
color: black;
bottom: 0;
right: 0;
}