-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
46 lines (46 loc) · 837 Bytes
/
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
#header{
background-color: rgb(246, 216, 176);
margin-top: 50px;
margin-bottom: 50px;
font-family: 'Hubballi', cursive;
}
#nameAndTitle{
background-color: white;
width: 400px;
margin:auto;
text-align: center;
}
#nameAndTitle h1, h2 {
margin: 0%;
}
h1, h2, h3{
text-transform: uppercase;
}
#contact{
list-style-type: none;
line-height: 30px;
}
#contact i{
width: 30px;
color: rgb(246, 216, 176);
}
#container{
display: grid;
grid-template-columns: 30% auto;
grid-column-gap: 20px;
text-align: justify;
}
#sidebar, #content{
display: flex;
flex-direction: column;
row-gap: 20px;
}
.card h3{
font-family: 'Hubballi', cursive;
}
.card{
font-family: montserrat;
border: 1px solid rgb(203, 203, 201);
border-radius: 10px;
padding: 20px;
}