-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
178 lines (151 loc) · 2.82 KB
/
app.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/* Font configurations */
/* Main headings and titles - Kudry */
h1, .title {
font-family: 'KudryWebWeirdHeadline', serif;
font-weight: 400;
letter-spacing: 0.05em;
}
/* Subtitles, dates, numbers and miscellaneous info - Noto Sans Mono */
h2, .subtitle, .date, .number, .info {
font-family: "Noto Sans Mono", monospace;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings: "wdth" 100;
}
/* Paragraphs and text - Noto Sans */
p, .text {
font-family: "Noto Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings: "wdth" 100;
}
/* Font weight variations */
.noto-sans-mono-thin {
font-weight: 100;
}
.noto-sans-mono-light {
font-weight: 300;
}
.noto-sans-mono-regular {
font-weight: 400;
}
.noto-sans-mono-medium {
font-weight: 500;
}
.noto-sans-mono-bold {
font-weight: 700;
}
.noto-sans-mono-black {
font-weight: 900;
}
.noto-sans-thin {
font-weight: 100;
}
.noto-sans-light {
font-weight: 300;
}
.noto-sans-regular {
font-weight: 400;
}
.noto-sans-medium {
font-weight: 500;
}
.noto-sans-bold {
font-weight: 700;
}
.noto-sans-black {
font-weight: 900;
}
/* Base styles */
body {
font-family: 'Noto Sans', sans-serif;
font-size: 1rem;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: 100%;
padding: 0;
margin: 0;
background: whitesmoke;
}
/* Hero section */
.hero {
height: 100vh;
width: 100%;
background-image: url('./img/orchids.png');
background-size: cover;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.hero-content {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
z-index: 1;
height: 100%;
justify-content: center;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
}
.hero h1 {
font-size: 6rem;
color: white;
position: relative;
z-index: 1;
margin: 0;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
line-height: 0.9;
}
.hero h2 {
color: white;
position: relative;
z-index: 1;
margin: 0;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.linkedin-link {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
z-index: 1;
transition: transform 0.2s ease;
}
.linkedin-link:hover {
transform: translateX(-50%) scale(1.1);
}
.linkedin-icon {
width: 32px;
height: 32px;
fill: white;
filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
/* Content section */
.content {
padding: 20px;
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background: #222;
color: whitesmoke;
}
}
/* Responsive styles */
@media (max-width: 768px) {
.hero h1 {
font-size: 4rem;
}
}