-
Notifications
You must be signed in to change notification settings - Fork 8
/
style.css
171 lines (152 loc) · 3.15 KB
/
style.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
html, body {
background-color: #774F38;
margin: 0 !important;
padding: 0 !important;
overflow-x: hidden;
}
#main {
width: 800px;
margin: 20px auto;
}
#header {
width: 100%;
background-color: #ECE5CE;
border-bottom: 7px #C5E0DC solid;
margin: 0 0 10px 0;
padding: 0;
}
#header h1 {
margin: 0 !important;
padding: 10px; !important;
line-height: 1em;
}
#header h1 a:link, #header h1 a:visited {
color: #111;
text-decoration: none;
}
#header h1 a:focus, #header h1 a:hover, #header h1 a:active {
text-decoration: underline;
}
#header form {
width: 600px;
margin: 0 auto;
text-align: center;
font-size: 0.85em;
}
#tab {
width: 650px;
margin: 10px auto 10px auto;
padding: 0;
border-bottom: 2px #774F38 solid;
height: 23px;
}
#tab li {
display: inline;
list-style-type: none;
margin-right: 15px;
}
#tab li a {
padding: 5px 10px;
background-color: #F0D3AC;
border-top: 2px #774F38 solid;
border-left: 2px #774F38 solid;
border-right: 2px #774F38 solid;
text-decoration: none;
color: #111;
font-size: 1.2em;
position: relative;
top: 0px;
}
#tab li a.selected, #tab li a:hover {
background-color: #ECE5CE;
border-bottom: 2px #ECE5CE solid;
outline: none;
}
#header input {
width: 150px;
}
#header input, #header select {
font-size: 1em;
padding: 4px;
}
#main, #formats, #copyright {
width: 800px;
margin: 20px auto;
background-color: #F1D4AF;
border: 7px #E08E79 solid;
padding: 20px 10px;
}
#main h2 {
padding-top: 0 !important;
margin: 0 0 30px 0 !important;
}
.result strong {
width: 190px;
float: left;
}
.result em {
font-size: 0.9em;
margin-left: 10px;
color: #222;
}
#main code {
width: 95%;
margin: 10px auto;
display: block;
background-color: #ece5ce;
border: 5px #774F38 solid;
padding: 2px;
}
.btn {
display:inline-block;
background:none;
margin:0;
padding:3px 0;
border-width:0;
overflow:visible;
font:100%/1.2 Arial,Sans-serif;
text-decoration:none;
color:#333;
}
* html button.btn {
padding-bottom:1px;
}
/* Immediately below is a temporary hack to serve the
following margin values only to Gecko browsers
Gecko browsers add an extra 3px of left/right
padding to button elements which can't be overriden.
Thus, we use -3px of left/right margin to overcome this. */
html:not([lang*=""]) button.btn {
margin:0 -3px;
}
.btn span {
background:#ddd url(http://stopdesign.com/eg/buttons/3.0/img/bg-button.gif) repeat-x 0 0;
margin:0;
padding:3px 0;
border-left:1px solid #bbb;
border-right:1px solid #aaa;
}
* html .btn span {
padding-top:0;
}
.btn span span {
position:relative;
padding:3px .4em;
border-width:0;
border-top:1px solid #bbb;
border-bottom:1px solid #aaa;
}
#corner {
position: absolute;
right: -80px;
top: 90px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
transform: rotate(45deg);
background-color: #f1d4af;
border-top: 7px solid #e08e79;
border-bottom: 7px solid #e08e79;
color: #111;
padding: 8px 60px 8px 50px;
font-size: 1.2em;
}