1$breakpoint: 520px;
2
3$tablet: $breakpoint;
4$body-font-size: 1rem;
5$radius-rounded: 0;
6$container-max-width: 920px;
7
8$navbar-breakpoint: $breakpoint;
9
10$panel-item-border: 1px solid hsl(0, 0%, 93%);
11$panel-radius: 0;
12$panel-shadow: 0;
13
14$card-shadow: 0;
15$card-radius: 0;
16$card-content-padding: 0;
17
18$table-cell-padding: 0.5em;
19$table-cell-border-width: 0;
20
21@import "bulma/sass/base/_all.sass";
22@import "bulma/sass/utilities/_all.sass";
23@import "bulma/sass/grid/_all.sass";
24@import "bulma/sass/components/_all.sass";
25@import "bulma/sass/form/_all.sass";
26@import "bulma/sass/helpers/_all.sass";
27@import "bulma/sass/layout/_all.sass";
28@import "bulma/sass/elements/_all.sass";
29
30body {
31 font-family: $family-primary
32}
33
34.input, .button{
35 border-radius: 0;
36}
37
38.file-row {
39 width: 100%;
40 font-family: monospace;
41}
42
43nav {
44 border-bottom: 1px solid;
45 margin: auto;
46}
47
48.container {
49 margin-top: 15px;
50
51 @include until($breakpoint) {
52 margin-left: 15px;
53 margin-right: 15px;
54 }
55}
56
57.card {
58 margin: 5px;
59}
60
61
62.image.is-fit {
63 height: auto;
64 width: 130px;
65
66 @include until($breakpoint) {
67 width: auto;
68 }
69}
70
71th {
72 font-weight: normal;
73}
74
75.img {
76 object-fit: cover;
77}