-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (54 loc) · 1.11 KB
/
style.css
File metadata and controls
62 lines (54 loc) · 1.11 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
:root {
font-size: 16px;
font-weight: bold;
font-family: sans-serif;
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body::-webkit-scrollbar {
width: 0.5rem;
}
body::-webkit-scrollbar-track {
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}
body::-webkit-scrollbar-thumb {
background: #491bc7;
}
.container {
display: flex;
color: white;
height: 100vh;
align-items: center;
/* justify-content: center; */
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
url("https://images.pexels.com/photos/3773405/pexels-photo-3773405.jpeg?cs=srgb&dl=laptop-computer-on-white-table-3773405.jpg&fm=jpg");
background-size: cover;
padding-top: 20px;
padding-left: 20px;
}
.typing {
position: relative;
color: #6649b8;
margin-left: 10px;
background: rgba(255, 255, 0, 0.5);
}
.typing::after {
content: "";
position: absolute;
width: 1px;
height: 100%;
right: -5px;
border-right: 2px solid rgba(255, 255, 0, 0.7);
animation: blink 0.8s infinite ease;
}
@keyframes blink {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}