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