blob: 5980b48329d87b61208a469c8c82b9a09154c532 (
plain) (
blame)
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
|
// project specific CSS goes here
////////////////////////////////
//Variables//
////////////////////////////////
// Alert colors
$white: #fff;
$mint-green: #d6e9c6;
$black: #000;
$pink: #f2dede;
$dark-pink: #eed3d7;
$red: #b94a48;
$input-height: 49px;
////////////////////////////////
//Alerts//
////////////////////////////////
// bootstrap alert CSS, translated to the django-standard levels of
// debug, info, success, warning, error
.alert-debug {
background-color: $white;
border-color: $mint-green;
color: $black;
}
.alert-error {
background-color: $pink;
border-color: $dark-pink;
color: $red;
}
.bg-light {
background-color: green;
}
.btn:hover {
background-color: red;
border-color: orange;
}
.container a {
color: darkslategrey;
background-color: yellowgreen;
font-size: large;
}
#chunky {
border: 8px dashed yellowgreen;
border-radius: 10px;
box-shadow: 3px 10px 12px lightgray;
}
.table-sm tr {
font-size: 0.75rem;
line-height: 10px;
min-height: 10px;
}
.textinput {
background-color: lightgoldenrodyellow;
box-shadow: 2px 10px 15px lightgray;
height: $input-height;
}
#_title {
color: orangered;
}
|