-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
99 lines (76 loc) · 1.67 KB
/
index.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
*{
margin: 0;
padding: 0;
font-family: "Open Sans",sans-serif;
text-decoration: none;
}
.full-screen{
width: 100%;
height: 100vh;
overflow: hidden;
display:flex;
align-items: center;
justify-content: center;
background-color: rgba(78, 78, 78, 0.4)
}
.full-screen video{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
div#welcome-tableContainer{
display: table;
}
div#welcome-tableRow1{
display: table-row;
}
h1.title{
display: table-cell;
font-family: 'century Gothic',sans-serif;
color: #f5d9dc;
font-size: 400%;
text-shadow: 0 0 300px #f5d9dc;
padding: 80px;
}
.btn{
margin-left: 160px;
border-radius: 36px;
border: 18px solid;
color: #f5d9dc;
text-decoration: none;
text-align: center;
font-family: 'century Gothic', sans-serif;
padding: 30px 30px;
font-weight: bold;
font-size: 40px;
}
.btn:hover{
color: #f5d9dc;
}
.btn {
transform: translateZ(0); position: relative;
transition-property: color; transition-duration: 0.3s;
}
.btn:before {
content: "";position: absolute; z-index: -1; top: 0;
left: 0; right: 0; bottom: 0; background: #f5d9dc;
transform-origin: 0 50%;transform: scaleX(0);
transition: transform 0.3s ease-out;
}
.btn:hover, .btn:focus, .btn:active {
color: white;
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
transform: scaleX(1);
}
h1.title {
transform: translateZ(0); position: relative;
transition-property: color; transition-duration: 0.1s;
}
h1.title:hover, h1.title:focus, h1.title:active {
color: white;
}