-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
146 lines (125 loc) · 2.29 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
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
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
header {
background-image: url("resources/bridge.jpeg");
background-size: cover;
background-position: 50%;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 20rem;
}
.hero h1 {
text-transform: uppercase;
text-align: center;
font-size: 40pt;
font-weight: lighter;
margin-bottom: 0px;
color: white;
text-shadow: 2px 2px 10px #00A9FF;
}
.hero h3 {
font-weight: lighter;
color: white;
padding: 1rem;
border-radius: 1rem;
backdrop-filter: blur(2px);
box-shadow: 2px 2px 10px #00A9FF;
}
h2 {
text-align: center;
padding: 40px;
text-transform:uppercase;
font-weight: lighter;
}
.skills {
height: 250px;
}
ul {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem;
}
@media (max-width: 480px) {
ul {
display: flex;
flex-direction: column;
gap: 1rem;
}
}
li {
width: 200px;
list-style-type: none;
display: flex;
align-items: center;
gap: 10px;
}
.projects {
background-color: #e3f4f9;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.carousel {
overflow: scroll;
scroll-snap-type: x mandatory;
display: flex;
margin: 10px;
gap: 10px;
width: 1200px;
max-width: 90vw;
}
.carousel img {
max-width: 90%;
border-radius: 10px;
scroll-snap-align: none center;
}
.interest-container {
display: flex;
justify-content: center;
gap: 1rem;
}
@media (max-width: 600px) {
.interest-container {
flex-direction: column;
}
}
.interest-card {
background-color: #00A9FF;
color: white;
border-radius: 1rem;
max-width: 400px;
padding: 2rem;
margin: 2rem;
}
footer {
background-color: #89CFF3;
}
.contact-me {
display: flex;
flex-direction: column;
align-items: center;
}
.contact-me p {
margin: 20px;
}
.contact-me button {
margin: 20px;
padding: 10px 50px;
border-style: none;
border-radius: 10px;
box-shadow: 2px 4px 10px ;
display: flex;
align-items: center;
gap: 10px
}
.contact-me button:hover {
background-color: #00A9FF;
}