-
Notifications
You must be signed in to change notification settings - Fork 1
/
the.css
56 lines (51 loc) · 1.58 KB
/
the.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
html, body {margin:0;padding:0;height:100%; overflow: hidden;}
body {
background: #514a9d; /* Old browsers */
background: -moz-linear-gradient(top, #514a9d 0%, #24c6dc 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#514a9d), color-stop(100%,#24c6dc)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #514a9d 0%,#24c6dc 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #514a9d 0%,#24c6dc 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #514a9d 0%,#24c6dc 100%); /* IE10+ */
background: linear-gradient(to bottom, #514a9d 0%,#24c6dc 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#514a9d', endColorstr='#24c6dc',GradientType=0 ); /* IE6-9 */
}
.button {
font-family: Helvetica;
font-variant: thin;
font-size: 24pt;
text-align: center;
display: inline-block;
width: 43%;
margin-left: 2%;
margin-right: 2%;
margin-bottom: 0px;
padding:10px;
position:relative;
bottom: 0px;
height: 30%;
background-color: #41F2E9;
color: white;
text-shadow: 2pt 2pt #21C2B9;
border-radius: 4pt;
box-shadow: inset 0px 1px 0px #21B2A9, 0px 6px 0px #3d6f0d;
}
.button:hover {
top:7px;
background-color: #21B2A9;
box-shadow: inset 0px 1px 0px #21B2A9, inset 0px -1px 0px #3d6f0d;
color: #444444;
text-shadow: 0px 1px 1px rgba(255,255,255,0.3);
}
#container {
margin-top: 20%;
width: 100%;
height: 400px;
padding: 10px;
}
#namebox {
width: 100%;
text-align: center;
font-family: "Pacifico", Helvetica, Arial;
font-size: 42pt;
color: white;
}