33 lines
455 B
SCSS
33 lines
455 B
SCSS
:root {
|
|
background-color: white;
|
|
}
|
|
|
|
$nextcloud-background: #14A2F0;
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
margin-left: 5vw;
|
|
margin-right: 5vw;
|
|
|
|
.services {
|
|
.nextcloud {
|
|
background-color: $nextcloud-background;
|
|
}
|
|
a {
|
|
width: 40vw;
|
|
border: solid;
|
|
img {
|
|
object-fit: contain;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|