-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (103 loc) · 2.86 KB
/
style.css
File metadata and controls
103 lines (103 loc) · 2.86 KB
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
a {
text-decoration:none;
}
.splash {
width: 450px;
height: 364px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -225px;
margin-top: -330px;
}
h1 {
margin:35px 0 45px 0;
padding:0;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
font-size: 25px;
font-weight: bold;
color: #b1cdfa;
text-align: center;
}
.icon {
width:207px;
height:217px;
display:block;
margin: 120px auto 0 auto;
}
.button {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
font-size: 19px;
text-decoration:none;
color: #fff;
width: 220px;
height: 35px;
margin: 0 auto 0 auto;
padding: 10px 0 0 15px;
border: 1px solid #1b569f;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px; /* future proofing */
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#448bda), to(#1f60b2));
background-image: -webkit-linear-gradient(top, #448bda, #1f60b2);
background-image: -moz-linear-gradient(top, #448bda, #1f60b2);
background-image: -ms-linear-gradient(top, #448bda, #1f60b2);
background-image: -o-linear-gradient(top, #448bda, #1f60b2);
-moz-box-shadow: inset 0 1px 1px #8abdf7;
-webkit-box-shadow: inset 0 1px 1px #8abdf7;
box-shadow: inset 0 1px 1px #8abdf7;
}
.button:hover {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
font-size: 19px;
text-decoration:none;
color: #fff;
width: 220px;
height: 35px;
margin: 0 auto 0 auto;
padding: 10px 0 0 15px;
border: 1px solid #1b569f;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px; /* future proofing */
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#448bda), to(#1f60b2));
background-image: -webkit-linear-gradient(top, #76aae4, #5b8ac7);
background-image: -moz-linear-gradient(top, #76aae4, #5b8ac7);
background-image: -ms-linear-gradient(top, #76aae4, #5b8ac7);
background-image: -o-linear-gradient(top, #76aae4, #5b8ac7);
-moz-box-shadow: inset 0 1px 1px #8abdf7;
-webkit-box-shadow: inset 0 1px 1px #8abdf7;
box-shadow: inset 0 1px 1px #8abdf7;
}
.arrow {
position:relative;
top:-4px;
margin-right:7px;
width: 31px;
height: 31px;
vertical-align:middle;
}
.footer {
width:350px;
margin-left:-175px;
position:fixed;
bottom:25px;
left:50%;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
line-height:20px;
font-size:13px;
color: #aeaeae;
text-align:center;
}
.footer a {
color: #5b8ac7;
font-weight:bold;
}
.footer a:hover {
color: #1f60b2;
font-weight:bold;
}