-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (85 loc) · 1.73 KB
/
style.css
File metadata and controls
126 lines (85 loc) · 1.73 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
*{
margin: 0;
padding: 0;
font-family: consolas;
}
body{
background-image:linear-gradient(to bottom, rgba(32, 32, 32, 0.5), rgba(46, 65, 71, 0.5)),url(images/wallpaper.png);
background-size: 100% 100vh;
background-repeat: no-repeat;
}
.type{
position: absolute;
}
.con{
display: flex;
justify-content: center;
align-items: center;
margin-top: 350px;
}
.type::before{
content: '';
position: absolute;
top: 0;
right: 0;
width: 2px;
background: rgb(67, 163, 201);
animation: blinkCursor 0.8s steps(3) infinite;
}
@keyframes blinkCursor {
0%,75%{
opacity: 1;
}
76%,100%{
opacity: 0;
}
}
.type h1{
position: relative;
color: rgb(0, 0, 0);
letter-spacing: 6px;
font-size: 4em;
text-transform: uppercase;
animation: typing 8s steps(13) infinite;
overflow: hidden;
}
@keyframes typing {
0%,90%,100%{
width: 0;
}
30%,60%{
width: 576.63px;
}
}
button{
padding: 3px;
position: relative;
margin-top: 8%;
background: transparent;
margin-left: 45%;
font-size: 25px;
border: 1px white solid;
text-decoration: none;
cursor:pointer;
background: transparent;
}
button a{
text-decoration: none;
color: white;
}
button a:hover{
background-color: rgb(148, 197, 207);
transition: 1s;
}
audio {
bottom: 0;
position: fixed;
left: 0;
}
p{
display: flex;
justify-content: center;
margin-top: 100px;
color: white;
font-size:35px;
}