aboutsummaryrefslogtreecommitdiff
path: root/scss/main.scss
blob: addae37547d11c435af03c54f643ed454cf146f5 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
$breakpoint: 360px;

$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;

$tag-radius: 0;
$tag-delete-margin: 15px;

$title-weight: normal;

@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;
    padding-bottom: 10px;
}

.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;
}


.card-image {
    margin: 5px;
}


.image.is-fit {
  height: auto;
  width: 130px;

    @include until($breakpoint) {
        width: auto;
    }
}

th {
    font-weight: normal;
}

.img {
    object-fit: cover;
}

// exting size
.text-size-1{
    @extend .is-size-4 !optional;
}

.text-size-2{
    @extend .is-size-5 !optional;
}