blob: 1c9249cf1f123ce7d56b4a0097e7c531f2025181 (
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
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
103
|
// 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;
}
body {
padding-top: 70px;
}
.lemon-bar {
box-shadow: 0 4px 5px rgba(0, 0, 0, .3)
}
//.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;
}
.tabaligncenter {
text-align: center;
}
.table-sm tr {
font-size: 0.85rem;
line-height: 15px;
min-height: 10px;
}
#partially-achieved-cell {
background-color: rgb(247, 148, 0);
color: white;
}
#achieved-cell {
background-color: green;
color: white;
}
#not-achieved-cell {
background-color: red;
color: white;
}
//.textinput {
// background-color: lightgoldenrodyellow;
// box-shadow: 2px 10px 15px lightgray;
// height: $input-height;
//}
#_title {
color: orangered;
}
|