-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
44 lines (42 loc) · 758 Bytes
/
main.css
File metadata and controls
44 lines (42 loc) · 758 Bytes
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
:root{
--bgColor: #1d1d25;
--randColor1:'';
--randColor2:'';
}
body{
background-color: var(--bgColor);
}
.container{
display: flex;
flex-flow: column wrap;
margin-left:20%;
margin-right:20%;
}
@media only screen and (max-width: 600px) {
.container{
margin-left:5%;
margin-right:5%;
}
}
#name{
width:19%;
font-family: 'JetBrains Mono', monospace;
font-weight: 600;
font-size:3vw;
color: inherit;
text-decoration: none;
color:#ffffff;
background-color: #131318;
}
@media only screen and (max-width: 600px) {
#name{
font-size:10vw;
width:48%;
}
}
.line-divide {
width: 100%;
height: 1px;
background-color: #696969;
margin: 0 auto;
}