29 lines
338 B
CSS
29 lines
338 B
CSS
@import 'bulma/css/bulma.css';
|
|
|
|
@import './variables.css';
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.bg-primary {
|
|
background-color: var(--color-primary);
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
object-fit: cover;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.h-100 {
|
|
height: 100%;
|
|
} |