-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
121 lines (104 loc) · 1.92 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
body {
background: #fff url(grid-18px-masked.png) repeat-x;
font-family: 'Open Sans', sans-serif;
color: #333;
}
a {
color: #000;
text-decoration: none;
}
a:hover {
color: #222;
}
#wrapper {
width: 700px;
margin: 50px auto;
}
#form input[type=text] {
border:1px solid #ccc;
background-color: #fefefe;
padding: 5px;
font-size: 14px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
.number {
width: 50px;
}
.color {
width: 80px;
}
#box {
margin: 50px auto;
height: 200px;
width: 200px;
background-color: #dddddd;
border-style: solid;
border-width: 2px;
border-color: #eee;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 0 5px 0 #666;
-moz-box-shadow: 0 0 5px 0 #666;
box-shadow: 0 0 5px 0 #666;
}
#copypaste {
width: 600px;
background-color: white;
//border: 1px solid #ccc;
padding: 20px;
font-family: Courier, sans-serif;
font-size: 16px;
color: #666;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 0 4px 0 #666;
-moz-box-shadow: 0 0 4px 0 #666;
box-shadow: 0 0 4px 0 #666;
}
#copypaste div {
display: block;
}
.hint {
font-size: 12px;
font-style: italic;
color: #666;
margin-left: 10px;
}
#footer {
border-top:1px dotted #999;
text-align: center;
font-size: 12px;
color: #333;
margin-top: 50px;
}
#errors {
paddin: 0;
margin: 0;
}
#errorlist li {
list-style: none;
margin-bottom: 5px;
margin-top: 5px;
font-size: 12px;
//color: red;
font-weight: bold;
padding: 5px 15px;
background-color: #FFC6C3;
border-style: none;
border-width: 2px;
border-color: #eeeeee;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 0 5px 0 #666;
-moz-box-shadow: 0 0 5px 0 #666;
box-shadow: 0 0 5px 0 #666;
}
#error_color, #error_border_color, #error_shadow_color, #error_border_style {
display: none;
}