40 lines
427 B
CSS
40 lines
427 B
CSS
body {
|
|
background-color: #2f3a4c;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
}
|
|
|
|
.contact-details {
|
|
display: flex;
|
|
margin-top: 15px
|
|
}
|
|
|
|
.icon {
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.icon i {
|
|
background: #9fc9ae;
|
|
padding: 9px 10px;
|
|
}
|
|
|
|
.text {
|
|
font-family: "Roboto", sans-serif;
|
|
color: white
|
|
}
|
|
|
|
.heading{
|
|
font-weight: bold;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.info {
|
|
font-weight: 100;
|
|
}
|
|
|