-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlinkTreeIndex.css
More file actions
104 lines (90 loc) · 1.83 KB
/
Copy pathlinkTreeIndex.css
File metadata and controls
104 lines (90 loc) · 1.83 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
104
body {
/* background-image: linear-gradient(to right, #74ebd5 0%, #9face6 100%); */
background-image: url("backgroundImage01.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
/* background-position: center; */
background-position:44% 10%;
background-size: cover;
}
.titleContainer {
margin: 50px;
text-align: center;
font-family: 'Bungee', cursive;
}
.titleContainer h1 {
font-size: 5rem
}
.buttonContainer {
max-width: 1080px;
margin: 0 auto;
}
.buttonContainer button,
.buttonContainer button::after {
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.buttonContainer button {
background: none;
border: 3px solid #fff;
border-radius: 5px;
color: #fff;
display: block;
font-weight: bold;
margin: .5em auto;
padding: .5em 3em;
position: relative;
text-transform: uppercase;
width: 100%;
font-size: 3em;
}
.buttonContainer button::before,
.buttonContainer button::after {
background: #fff;
content: '';
position: absolute;
z-index: -1;
}
.buttonContainer button:hover {
color: black;
}
/* BUTTON 3 */
.buttonContainer .btn::after {
height: 0;
left: 50%;
top: 50%;
width: 0;
}
.buttonContainer .btn:hover:after {
height: 100%;
left: 0;
top: 0;
width: 100%;
}
.buttonContainer .linkButton {
cursor: pointer;
align-items: center;
height: 50px;
margin-bottom: 16px;
overflow: hidden;
position: relative;
text-align: center;
border-width: 2px;
border-style: solid;
border-color: #3d3b3c;
background-color: #3d3b3c;
}
.buttonContainer a {
text-decoration: none;
font-weight: 700;
font-size: 16px;
color: #ffffff;
}
.buttonContainer .linkButton:hover {
background-color: transparent;
color: #3d3b3c;
border-color: #3d3b3c;
transition: .4s cubic-bezier(0.39, 0.575, 0.565, 1);
}