mirror of
https://github.com/adanrsantos/ThePlaceHolders.git
synced 2024-12-16 14:20:39 -06:00
55 lines
762 B
CSS
55 lines
762 B
CSS
|
body {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
*, *:before, *:after {
|
||
|
box-sizing: inherit;
|
||
|
}
|
||
|
|
||
|
.column {
|
||
|
float: left;
|
||
|
width: 33.3%;
|
||
|
margin-bottom: 16px;
|
||
|
padding: 0 8px;
|
||
|
}
|
||
|
|
||
|
.card {
|
||
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
|
||
|
margin: 8px;
|
||
|
}
|
||
|
|
||
|
.about-section {
|
||
|
padding: 30px;
|
||
|
text-align: center;
|
||
|
background-color: #bf7016;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
padding: 0 16px;
|
||
|
}
|
||
|
|
||
|
.container::after, .row::after {
|
||
|
content: "";
|
||
|
clear: both;
|
||
|
display: table;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
color: grey;
|
||
|
}
|
||
|
|
||
|
.button:hover {
|
||
|
background-color: #555;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 650px) {
|
||
|
.column {
|
||
|
width: 100%;
|
||
|
display: block;
|
||
|
}
|
||
|
}
|