lens @ b8b6d3037c524575f140650ac243c16df6a98a92

 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.image.is-fit {
68  height: auto;
69  width: 130px;
70
71    @include until($breakpoint) {
72        width: auto;
73    }
74}
75
76th {
77    font-weight: normal;
78}
79
80.img {
81    object-fit: cover;
82}