-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (52 loc) · 1.69 KB
/
style.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
<style>
body {
margin: 0;
padding: 0;
font-family: "Lucida Console", "Courier New", monospace;
background-color: black;
}
.container {
background-image: url('background-image.jpg');
background-size: cover;
background-position: center;
height: 130vh;
//display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
head{
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#ffffff">
}
h1 {
font-size: calc(2vw + 20px); /* Responsive font size based on viewport width */
color: #black;
text-shadow: 3px 3px 8px rgba(0, 0, 0, 2.5);
}
h2 {
font-size: calc(1vw + 15px); /* Responsive font size based on viewport width */
color: gray;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.8);
}
h3 {
font-size: calc(1vw + 10px); /* Responsive font size based on viewport width */
color: dark gray;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 2);
}
/* Media query for smaller screens */
@media (max-width: 600px) {
h1 {
font-size: 8vw; /* Adjust font size for smaller screens */
}
a {
color: gray;
font-size: 17px;
}
#background-gradient {
height: 1050px;
background-image: linear-gradient(black, green);
}
</style>