summaryrefslogtreecommitdiff
path: root/front-end/src/bootstrap/style/etc.scss
blob: 5d65ff4b117cf027492b038308153eb9d815d10e (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
#header-mobile-nav a:hover,
#header-desktop-nav a:hover,
#header-mobile-nav .router-link-active,
#header-desktop-nav .router-link-active,
footer .footer-content .router-link-active {
    @apply text-primary-500 dark:text-primary-600;
}

#header-mobile-nav a {
    @apply text-2xl;
}

#site-title h3 {
    @apply mb-0 text-xl;
}


.env-bg {
    font-family: "Nunito";
    background: #f7f7f7;
    @apply dark:bg-dark-900;
    @apply text-gray-700 dark:text-gray-300;
}

.env-bg-gradient {
    background: #98E4C8;
    background: -webkit-linear-gradient(bottom right, #98E4C8, #2C6BC3);
    background: -moz-linear-gradient(bottom right, #98E4C8, #2C6BC3);
    background: linear-gradient(to top left, #98E4C8, #2C6BC3);
    @apply text-gray-700;
}

.app-component-entry {
    @apply flex flex-col flex-auto mb-10;

    @screen sm {
        & {
            min-height: 640px;
        }
    }
}

.vue-notification-group.general-toast {
    @apply right-5;
}

.float-label {
    @apply mt-5 relative;

    &>label {
        @apply absolute top-0 left-0 bottom-0 block pl-3 ease-linear duration-75 opacity-0;
    }

    &>input:focus+label {
        @apply opacity-100 -mt-6;
    }
}

.default-page-template {
    min-height: 400px;
    @apply container w-full max-w-4xl px-4 pt-3 mx-auto sm:pt-6 md:px-0;
}

a.link {
    @apply duration-150 ease-in-out;
    @apply text-primary-500 hover:text-primary-600;
}