-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle5.css
54 lines (46 loc) · 1.05 KB
/
style5.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
body {
font-family: helvetica, arial, verdana, sans-serif;
background-color: #fff;
color: #333;
}
input {
font-size: 2.4em;
background-color: transparent;
text-align: center;
border-width: 0;
width: 100%;
margin: 0 0 .1em 0;
color: #fff;
}
label {
display: block;
font-size: .8em;
}
button {
/* basics */
color: #444;
background-color: #B5B198;
/* rounded corners */
-webkit-border-radius: 6px;
border-radius: 6px;
-moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
font-weight: bold;
}
button:hover, button:active, button:focus {
background-color: #CBC7AE;
}
.box {
/* basics */
background-color: #444;
color: #C4BE92;
text-align: center;
/* rounded corners */
-webkit-border-radius: 12px;
border-radius: 12px;
-moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
padding: .8em .8em 1em;
width: 8em;
margin: 0 auto;
-webkit-box-shadow: 0px 0px 12px 0px #000;
box-shadow: 0px 0px 12px 0px #000;
}