-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexstyles.css
112 lines (109 loc) · 2.28 KB
/
indexstyles.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
body {
overflow: hidden;
}
.box {
background-color: #b3c2bf;
color: #dae7d6;
}
.header {
padding-top: 0px;
font-family: 'Maven Pro', sans-serif;
text-align: center;
color: #e9ece5;
font-size:7em;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.mountains {
padding-top: 1em;
width: 20%
height: 20%;
max-width: 100vw;
align-items: center;
}
.info {
padding-top: .25em;
padding-bottom: 0px;
font-family: 'Maven Pro', sans-serif;
text-align: center;
color: #e9ece5;
font-size:1.5em;
}
.container #link {
font-family: 'Maven Pro', sans-serif;
color: #e9ece5;
padding: .25em;
font-size: 1.75em;
text-decoration: none;
animation-delay: 1.2s;
/*
border: 1.5px solid #e9ece5;
border-radius: 8px;*/
}
.container #arrow {
color: #e9ece5;
}
a.button {
position: relative;
display: inline-block;
width: 25.6em;
height: 6.3em;
overflow: hidden;
vertical-align: middle;
text-align: left;
text-decoration: none;
line-height: 3em;
font-size: 1rem;
color: #e9ece5;
cursor: pointer;
-webkit-transform: translateZ(0);
transform: translateZ(0);
transition: -webkit-transform 0.5s;
transition: transform 0.5s;
transition: transform 0.5s, -webkit-transform 0.5s;
}
a.button svg {
z-index: 1;
position: absolute;
top: 0;
left: 0;
}
a.button svg g line,
a.button svg g polyline,
a.button svg g circle {
fill: none;
stroke: #e9ece5;
}
a.button svg g line,
a.button svg g polyline {
stroke-miterlimit: 10;
}
a.button svg g circle {
display: block;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 0.066em;
stroke-dasharray: 200;
stroke-dashoffset: 0;
transition: stroke-dashoffset ease-out 0.5s;
}
a.button font {
z-index: 2;
position: relative;
display: inline-block;
text-transform: uppercase;
font-family: "Roboto", Helvetica, Arial, sans-serif;
font-size: 1.5em;
}
a.button:hover {
-webkit-transform: translateZ(0) translateX(0.5em);
transform: translateZ(0) translateX(0.5em);
}
a.button:hover svg g circle {
stroke-dashoffset: 200;
}