-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (65 loc) · 1.5 KB
/
style.css
File metadata and controls
100 lines (65 loc) · 1.5 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
.center {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
}
.button {
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
padding: 15px 25px;
margin-bottom: 20px;
padding-bottom: 20px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #062F4F;
border: none;
border-radius: 24px 4px;
box-shadow: 0 9px #999;
}
.button:hover {background-color:rgba(14, 11, 22, 0.932)}
.button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.masthead-heading text-uppercase{
text-align: center;
font-size: .5rem;
color: red;
letter-spacing: -7px;
font-weight: 700;
text-transform: 700;
animation: blur .75s ease-out infinite;
text-shadow: 0px 0px 5px #fff,0px 0px 7px #fff;
margin-top: 250px;
}
@keyframes blur {
from{
text-shadow: 0px 0px 10px #fff,
0px 0px 10px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 25px #fff,
0px 0px 50px #fff,
0px 0px 50px #fff,
0px 0px 10px #7B96B8,
0px 0px 10px #7B96B8,
0px 0px 10px #7B96B8,
0px 0px 10px #7B96B8,
0px 0px 10px #7B96B8,
0px 0px 10px #7B96B8,
0px 0px 10px #7B96B8,
0px 0px 10px #7B96B8,
;
}
}