-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
103 lines (89 loc) · 1.82 KB
/
main.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
93
94
95
96
97
98
99
100
101
102
103
@font-face {
font-family: "Ubuntu Mono";
src: url("UbuntuMono-Regular.woff") format('woff');
}
.hidden {
display: none;
}
body {
background-color: black;
background-image: url("crossflame20_logo_final_3.gif");
background-size: auto 100vh;
background-position: center;
background-repeat: no-repeat;
}
html,body {
width: 100vw; height: 100vh; margin: 0; padding: 0;
backdrop-filter: blur(10px);
display: flex;
align-items: center;
justify-content: center;
}
.box {
width: 50vw; height: auto;
padding: 10vh;
gap: 2vh;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
background-color: rgba(0,0,0,0.35);
border: 0.4vh solid rgba(67,67,67,0.5);
border-radius: 0.5vh;
}
h1,h2,h3,p,button {
color: white;
margin: 0;
font-family: "Ubuntu Mono";
font-weight: bold;
}
h1 {
font-size: 10vh;
padding-bottom: 3vh;
}
h3 {
font-size: 4vh;
}
button {
font-size: 2vh;
}
.buton {
display: flex;
flex-direction: column;
align-items: center;
gap: 3vh;
}
button {
border: 0.5vh white solid;
border-radius: 0.5vh;
padding: 1.5vh;
transition: background-color 0.25s;
background-color: rgba(0,0,0,0.0);
}
button:hover {
transition: background-color 0.25s;
background-color: rgba(0,0,0,0.5);
}
.divider,.divider-sm {
background-color: white;
width: 100%;
height: 0.65vh;
margin-bottom: 5vh;
}
.divider {
margin-top: 5vh;
}
.divider-sm {
margin-top: 1vh;
margin-bottom: 1vh;
justify-content: flex-start;
height: 1vh;
width: 25%;
}
.about-me-body,.projects-list,.contact-items {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
gap: 2vh;
}