38 lines
763 B
CSS
38 lines
763 B
CSS
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
||
|
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
||
|
sans-serif;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
background: url('/background/1.jpg') no-repeat fixed;
|
||
|
background-size: cover;
|
||
|
background-position: center center;
|
||
|
}
|
||
|
|
||
|
.with-border {
|
||
|
box-shadow: 4px 4px 6px #a7a7a7;
|
||
|
border-radius: 8px;
|
||
|
border: 1px solid #ccc;
|
||
|
/* margin: 16px; */
|
||
|
padding: 8px;
|
||
|
}
|
||
|
|
||
|
.with-margin {
|
||
|
margin: 8px;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 575.98px) {
|
||
|
.with-margin {
|
||
|
margin: 8px 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.with-background {
|
||
|
background-color: rgba(248,249,250, 0.7) !important;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
margin-top: 116px;
|
||
|
}
|