-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
92 lines (78 loc) · 1.3 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
80
81
82
83
84
85
86
87
88
89
90
91
92
@font-face {
src: url(iosevka-light.ttf);
font-family: ios;
}
*{
padding:0;
margin:0;
box-sizing: border-box;
}
:root{
--text-color: #00aa00;
}
body{
color: #ccc;
background-color: #333;
font-family: 'Helvetica', sans-serif;
font-size: 18px;
line-height: 1.6;
font-family: ios, sans-serif;
}
h1{
color: var(--text-color);
font-size: 50px;
letter-spacing: -5px;
margin-bottom: 20px;
}
h2{
color: var(--text-color);
}
.hidden{
display:none;
}
.container{
max-width: 600px;
margin: auto;
display: flex;
flex-direction: column;
height: 70vh;
justify-content: center;
align-items: center;
}
ul{
list-style-type: none;
}
nav{
width: 30%;
}
nav ul{
display: flex;
justify-content: space-around;
align-items: center;
}
.cursor{
font-weight: 700;
animation: 1s blink step-end infinite;
}
@keyframes blink{
from, to{
color:transparent
}
50%{
color:green;
}
}
.wb-body {
background-color: #111;
padding: 20px;
}
#about-text, #contact-list{
padding-top: 10px;
}
#about:hover, #contact:hover, a {
cursor:pointer;
}
a{
text-decoration: none;
color: inherit;
}