-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (67 loc) · 1.43 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
:root {
--head-one-size: clamp(1em, 5vw, 2em);
--head-two-size: clamp(0.5em, 4.5vw, 1.5em);
--head-three-size: clamp(0.3em, 1.7vw, 1.6em);
}
html, body {
height: 100%;
width: 100%;
}
body {
margin: 0;
background-image: url(images/background.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
color:#C0FFEE;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
font-family: Arial, sans-serif;
}
#header {
display: flex;
justify-content: space-between;
width: 100%;
}
.headerImage {
width: calc(var(--head-one-size) * 0.35* 0.75);
width: calc(var(--head-one-size) * 0.75);
padding: 5px;
}
#aboutme {
font-size: var(--head-three-size);
color: rgb(255, 249, 233);
text-align:center;
text-shadow: #000000 0px 0px 20px; /* I pirated "Pirate Black" from Pantone */
background-color: rgba(0, 0, 0, 0.2);
display: flex;
}
#socials {
color: #f0b1db;
text-shadow: #2f3334 0px 0px 10px;
margin-bottom: 2%;
}
#socials > h2 {
margin: 0;
}
a:link {
color: rgb(210, 239, 255);
}
a:visited {
color: rgb(151, 171, 182);
}
#title {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
h1 {
font-size: var(--head-one-size);
}
h2 {
font-size: var(--head-two-size);
}