lens @ 2a986064a2657c9091a31a941ce0d004191b8453

 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.wide-column {
38    width: 100%;
39}
40.is-mono {
41    font-family: monospace;
42}
43
44nav {
45    border-bottom: 1px solid;
46    margin: auto;
47}
48
49a.is-danger {
50    color: $danger
51}
52
53.container {
54    margin-top: 15px;
55
56    @include until($breakpoint) {
57        margin-left: 15px;
58        margin-right: 15px;
59    }
60}
61
62.card {
63    margin: 5px;
64}
65
66
67.card-image {
68    margin: 5px;
69}
70
71
72.image.is-fit {
73  height: auto;
74  width: 130px;
75
76    @include until($breakpoint) {
77        width: auto;
78    }
79}
80
81th {
82    font-weight: normal;
83}
84
85.img {
86    object-fit: cover;
87}