-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
132 lines (124 loc) · 2.58 KB
/
css.css
File metadata and controls
132 lines (124 loc) · 2.58 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
122
123
124
125
126
127
128
129
130
131
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
body {
font-family: helvetica, sans-serif;
color: #ddd;
background: #20252b; /* Old browsers */
}
ul, li {
margin:0;
padding:0;
}
li {
line-height: 1.4em;
}
.gradient {
background: #30355b; /* Old browsers */
background: -moz-linear-gradient(top, #30353b 0%, #30355b 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#30353b), color-stop(100%,#30355b)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #30353b 0%,#30355b 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #30353b 0%,#30355b 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #30353b 0%,#30355b 100%); /* IE10+ */
background: linear-gradient(top, #30353b 0%,#30355b 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#30353b', endColorstr='#30355b',GradientType=0 ); /* IE6-9 */
}
#main {
padding: 20px 40px 40px;
width: 750px;
height: 100%;
border: 1px solid #101010;
margin: 20px auto 60px;
border-radius: 20px;
-moz-border-radius: 20px;
-webkit-box-shadow: 0 10px 20px rgba(0,0,0,.25);
-moz-box-shadow: 0 10px 20px rgba(0,0,0,.25);
box-shadow: 0 10px 20px rgba(0,0,0,.25);
position:relative;
}
#main a {
color: #bbf;
text-decoration: none;
}
#main h1 {
margin: auto;
text-align: center;
}
#main h3 {
text-align: right;
}
#main h4 {
margin-bottom: 10px;
}
#main .entry {
margin-bottom: 10px;
}
#main label {
display:block;
font-weight: bold;
padding-bottom: 2px;
}
#main .results ul {
list-style: none;
}
#main .results li {
}
#main .results label {
margin-bottom: 10px;
}
#main input, #main textarea {
border: 1px solid #171a24;
padding:10px;
font-size:18px;
color: #1b1824;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
#main input[name=regex] {
width: 540px;
}
#main input[name=modifier] {
width: 105px;
}
#main textarea {
width: 650px;
height: 80px;
}
#main .instructions li {
}
#main .meat{
padding-top: 10px;
}
#main .meat .section {
float: left;
}
#main .error {
color: #f88;
}
#main .section.results {
clear:right;
}
#main .afterword {
padding-top: 10px;
clear: left;
}
#main .afterword ul {
float:right;
list-style: none;
clear:both;
}
#main .afterword li {
float: left;
margin: 10px 2px;
}
#main .afterword li:last-child {
margin-right: 0;
}
#main .credits {
clear:both;
font-size: .7em;
line-height: 24px;
text-align: right;
}
#main .credits a img {
vertical-align:middle;
}