odin-codespace/css/styles.css

99 lines
1.5 KiB
CSS
Raw Normal View History

2023-09-16 20:30:58 -04:00
.header {
padding: 0 170px;
background-color: #2C3639;
height: 550px;
color: #DCD7C9;
}
2023-09-14 18:26:33 -04:00
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
2023-09-16 20:30:58 -04:00
margin-bottom: 75px;
2023-09-14 18:26:33 -04:00
}
.navbar ul {
display: flex;
margin: 0;
padding: 0;
}
.container {
display: flex;
justify-content: space-between;
align-items: center;
}
#skills {
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
2023-09-16 20:30:58 -04:00
min-height: 450px;
2023-09-14 18:26:33 -04:00
}
.cards {
display: flex;
align-items: center;
justify-content: center;
2023-09-16 20:30:58 -04:00
flex-wrap: wrap;
}
.card {
width: 150px;
height: 150px;
padding: 50px;
gap: 52px;
word-wrap: break-word;
2023-09-14 18:26:33 -04:00
}
2023-09-16 20:30:58 -04:00
2023-09-14 18:26:33 -04:00
.card-photo {
width: 100px;
height: 100px;
background-color: green;
}
2023-09-16 20:30:58 -04:00
.quote {
height: 400px;
background-color: #3F4E4F;
}
2023-09-14 18:26:33 -04:00
.quote h1 {
display: flex;
align-items: center;
justify-content: center;
}
2023-09-16 20:30:58 -04:00
.contact {
height: 400px;
align-items: center;
justify-content: center;
display: flex;
}
2023-09-14 18:26:33 -04:00
.email-section {
display: flex;
align-items: center;
2023-09-16 20:30:58 -04:00
justify-content: space-between;
height: 150px;
/* width: 75%; */
2023-09-14 18:26:33 -04:00
}
.footer {
display: flex;
align-items: center;
justify-content: center;
2023-09-16 20:30:58 -04:00
background-color: #2C3639;
2023-09-14 18:26:33 -04:00
}
body {
display: flex;
flex-direction: column;
justify-content: space-between;
align-content: space-between;
2023-09-16 20:30:58 -04:00
min-height: 98vh;
2023-09-14 18:26:33 -04:00
}
ul {
list-style-type: none;
}