-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
126 lines (109 loc) · 1.99 KB
/
styles.css
File metadata and controls
126 lines (109 loc) · 1.99 KB
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
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap");
body {
margin: 0;
background: linear-gradient(to bottom, #c11e38, #220b34);
color: white;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background: linear-gradient(to bottom, #c11e38, #220b34);
color: white;
}
.greeting {
display: none;
font-family: "Quicksand", sans-serif;
font-size: 30px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.content-blocks {
display: flex;
justify-content: center;
width: 80%;
max-width: 1200px;
margin-top: 20px;
}
.about-me,
.my-socials {
flex: 1;
padding: 20px;
text-align: center;
}
#socials {
text-align: center;
}
h2 {
font-family: "Quicksand", sans-serif;
font-size: 28px;
margin-bottom: 20px;
}
.social-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 20px;
}
a {
font-family: "Quicksand", sans-serif;
font-size: 28px;
padding: 14px 20px;
margin: 8px 0;
cursor: pointer;
background-color: transparent;
color: white;
border: hidden;
border-radius: 100px;
transition: background-color 0.3s, color 0.3s;
}
a:hover {
background-color: #2c2c2c;
color: rgb(226, 111, 236);
}
.about-me p {
font-family: "Quicksand", sans-serif;
font-size: 18px;
line-height: 1.6;
margin-bottom: 15px;
}
.about-me-columns {
display: flex;
justify-content: space-around;
width: 100%;
margin-top: 15px;
gap: 10px;
}
.general-info,
.interests,
.other-stuff {
flex: 1;
padding: 10px;
text-align: left;
}
.general-info h3,
.interests h3,
.other-stuff h3 {
font-size: 20px;
margin-bottom: 10px;
text-align: center;
font-family: "Quicksand", sans-serif;
}
ul {
list-style-type: disc;
padding-left: 20px;
}
li {
margin-bottom: 8px;
}
@media (max-width: 768px) {
.about-me-columns {
flex-direction: column;
align-items: stretch;
}
}