-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
101 lines (99 loc) · 2.14 KB
/
main.css
File metadata and controls
101 lines (99 loc) · 2.14 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
body{font-family:"Helvetica";text-align:center;padding:50px 20px 0;background:#f4f4f7;color:#444;margin:0; padding-bottom:60px;}h1{font-size:48px;line-height:1.2em;border-bottom:#CCC solid 1px;padding:20px 0}h3{font-weight:300}
footer {
width: 100%;
margin-top: 30px;
background-color: #eaeaea;
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 45px;
}
footer .footer-inner
{
width: 95%;
margin: 0 auto;
bottom: 0;
left: 0;
right: 0;
position: relative;
top: 50%;
transform: translateY(-50%);
}
footer .left-hand-text
{
float: left;
font-size: 0.9rem;
line-height: 1.5rem;
color: #807d7d;
text-align: left;
font-family: "Helvetica";
}
.clear
{
clear: both;
}
/*http://littlesnippets.net/?sfid=1171&_sft_category=buttons&sf_paged=2*/
@import url(https://fonts.googleapis.com/css?family=Raleway:400);
.snip1479 {
font-family: 'Raleway', Arial, sans-serif;
border: none;
background-color: #5666a5;
border-radius: 5px;
color: #ffffff;
cursor: pointer;
padding: 0px 30px;
display: inline-block;
margin: 15px 30px;
text-transform: uppercase;
line-height: 46px;
font-weight: 400;
font-size: 1em;
outline: none;
position: relative;
overflow: hidden;
font-size: 16px;
border-radius: 23px;
letter-spacing: 2px;
-webkit-transform: translateZ(0);
-webkit-transition: all 0.35s ease;
transition: all 0.35s ease;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.snip1479:before {
opacity: 0;
content: "";
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
border-radius: inherit;
background-color: #ffffff;
-webkit-transition: all 0.3s;
transition: all 0.3s;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.snip1479:after {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
border: 5px solid #5666a5;
content: '';
border-radius: inherit;
}
.snip1479:hover,
.snip1479.hover {
background-color: #5666a5;
color: #ffffff;
}
.snip1479:hover:before,
.snip1479.hover:before {
-webkit-transform: translateY(0%);
transform: translateY(0%);
opacity: 0.25;
}