-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathstyles.css
79 lines (65 loc) · 1.12 KB
/
styles.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
body{
background-color: #000000;
margin: 0;
font-family: sans-serif;
}
.site-header{
display: flex;
justify-content: space-between;
}
.socials{
font-size: 25px;
float: right;
}
.terminal{
padding-bottom: 7px;
position: relative;
color:#00c2ba;
text-shadow:0.5px 0.5px 8px #00c2ba;
float:left;
font-size: 30px;
align-items: center;
gap: 2px;
}
.terminal ::after{
content:" ";
width: 10px;
height: 20px;
background: #00c2ba;
display: inline-block;
box-shadow: 0.5px 0.5px 8px #00c2ba;
animation: cursor-blink 1s steps(2) infinite;
}
@keyframes cursor-blink {
0% {
opacity: 0;
}
}
.listo a{
position: relative;
font-size: larger;
text-align: center;
color: #666;
margin-right: 10px;
}
.listo a:hover{
color: #00c2ba;
transition: 0.5s;
}
.yo{
display:flex;
align-items: center;
}
.text{
margin-left:75px;
}
.para1{
font-family: 'JetBrains Mono', monospace;
}
.ascii{
margin-top: 60px;
text-shadow:0.5px 0.5px 8px #00c2ba;
}
.name{
color: #00c2ba;
}