-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
108 lines (89 loc) · 1.55 KB
/
index.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
104
105
106
107
108
html {
background-color: #fdfff5;
overflow-x: hidden;
max-width: 100%;
}
body {
position: relative;
max-width: 100%;
font-size: 4rem;
font-family: 'JetBrains Mono', monospace;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin: 0;
}
::selection {
background: #5f2ead;
}
h1 {
font-size: 5rem;
}
h2 {
font-size: 2rem;
}
hr {
border: 2px solid white;
}
iframe {
width: 94%;
height: max(150px, 20vw);
border: 4px solid #FFFFFF
}
#about {
margin-top: 4rem;
margin-bottom: 4rem;
background-color: #fdfff5;
font-size: 1.2rem;
}
#about-intro {
display: flex;
white-space: nowrap;
justify-content: center;
margin-left: 3.5vw;
font-size: max(3.5vw, 2.5rem);
height: max(110px, 9vw);
}
#about-experience {
margin-top: 75px;
}
#about-tech {
margin-top: 25px;
}
#about-contact {
margin-top: 50px;
}
#lazurite {
background: linear-gradient(135deg, rgba(71,150,255,1) 0%, rgba(156,198,255,1) 100%);
display: flex;
}
#lazurite-info {
position: absolute;
width: min(94vw, 700px);
z-index: 1;
margin: min(4vw, 6rem) min(3vw, 5rem) min(3vw, 5rem);
background-color: #00000044;
color: #FFFFFF;
border-radius: 10px
}
.mod {
width: 94%;
}
.mod-title {
display: flex;
gap: 10px;
}
.mod-icon {
width: 100px;
height: 100px;
}
.mod-description {
margin-left: 20px;
}
.cursor {
animation: blinker 1s steps(1, end) infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}