-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
136 lines (118 loc) · 2.23 KB
/
main.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
* {
padding:0px;
margin: 0px;
}
html, body {
background: -webkit-radial-gradient(60px 45px, circle farthest-corner, #666, #333);
height: 100%;
}
a, a:visited {
text-decoration: none;
border: none;
color: inherit;
transition: color 0.25s;
}
a:hover {
color: rgba(0, 0, 0, 0.8);
cursor: pointer;
}
input:focus {
outline: none;
}
input[type=text] {
font-size: 25px;
width: 85px;
padding: 5px;
margin-left: 10px;
border: none;
background: transparent;
}
#main {
overflow: auto;
padding-bottom: 50px;
}
#wrap {
width: 800px;
margin: 0 auto;
min-height: 100%;
}
#wrap #solution {
width: 300px;
border-radius: 5px;
border: 10px solid rgba(0, 0, 0, .4);
background: rgba(255, 255, 255, .2);
margin-right: 20px;
float:right;
display:none;
text-align: center;
margin-top: 20px;
padding-bottom: 10px;
}
#wrap #solution > span {
font-size: 1.5em;
margin-bottom: 10px;
}
#wrap #solution > h3 {
font-size: 1.2em;
padding: 10px;
margin-bottom: 5px;
background: rgba(255, 255, 255, .1);
}
#wrap form {
float: left;
margin-top : 20px;
background-color: rgba(255, 255, 255, .1);
padding: 40px;
padding-top: 50px;
border-radius: 5px;
border: 10px solid rgba(0, 0, 0, .2);
margin-left: 20px;
}
#wrap form > div {
line-height: 40px;
background: rgba(255, 255, 255, .4);
padding-left: 10px;
border-radius: 10px 0px 0px 10px;
margin-bottom: 10px;
}
#wrap form > div > span {
width: 12px;
padding-right: 5px;
border-right: 1px solid rgba(0, 0, 0, .2);
}
#wrap #help {
width: 370px;
float: right;
border-radius: 5px;
padding: 20px;
background-color: rgba(255, 255, 255, .3);
border: 10px solid rgba(0, 0, 0, .3);
margin-top: 20px;
font-size: 1.2em;
line-height: 200%;
margin-right: 20px;
}
.highlight {
color: rgba(0, 0, 0, 1);
font-weight: 900;
font-size: 1.25em;
}
#wrap #solution .code {
background: rgba(255, 255, 255, .1);
border: 2px solid rgba(0, 0, 0, .1);
padding: 9px;
border-radius: 3px;
border: 1px solid rgba(0, 0, 0, 0.15);
font-family: "Courier New", monospace;
}
body footer {
line-height: 20px;
height: 50px;
text-align: left;
font-size: 20px;
font-family: Arial, sans-serif;
clear: both;
margin-top: -50px;
margin-left: 30px;
color: rgba(0, 0, 0, .5);
letter-spacing: 0.2em;