-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (68 loc) · 1.43 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Source Sans Pro', sans-serif;
}
.container{
background-color: #222242;
height: 100vh;
width: 100%;
text-align: center;
position: absolute;
}
.wrapper{
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.wrapper p{
position: relative;
display: inline-block;
color: #ffffff;
z-index: 9999;
font-size: 48px;
margin-bottom: 120px;
}
.wrapper p::before{
content: '';
position: absolute;
width: 200px;
height: 200px;
background-color: #151538;
z-index: -1;
border-radius: 50%;
left: -10%;
top: -118%;
animation-name: shine;
animation-duration: 3s;
animation-iteration-count: infinite;
}
@keyframes shine{
0%,100%{
box-shadow: 0px 0px 32px -12px rgba(246, 180, 0, .5);
}
50%{
box-shadow: 0px 0px 32px 3px rgba(246, 180, 0, .5);
}
}
button{
background-color: #222242;
padding: 10px 38px;
border: 1px solid #A9A9A9;
border-radius: 28px;
color: #fff;
transition: all .2s ease;
outline: 0;
}
button:not(:last-child){
margin-right: 20px;
}
button:hover,
button:focus
{
border-color: #F6B400;
color: #F6B400;
box-shadow: 0px 4px 27px -12px #F6B400;
}