aboutsummaryrefslogtreecommitdiff
path: root/qc_app/static/css/styles.css
blob: 922924c0ddb446f807c9628eb60cdaf25a358990 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
* {
    box-sizing: border-box;
}

label, legend {
    text-transform: capitalize;
}

.heading {
    color: #FEFEFE;
    background-color: #336699;
    text-transform: capitalize;
    border-radius: 5px;
    padding-left: 0.5em;
}

fieldset {
    border-radius: 5px;
}

.btn {
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    text-transform: capitalize;
    padding: 0.45em 0.3em 0.45em 0.3em;
}

.btn-main {
    color: #FEFEFE;
    border-color: #357ebd;
    background-color: #336699;
    font-weight: bold;
}

.btn-danger {
    color: #FEFEFE;
    border-color: #FF3434;
    background-color: #FF4545;
    font-weight: bold;
}

.alert {
    display: block;
    border-style: solid;
    border-radius: 3px;
}

.alert-error {
    color: #A35256;
    background-color: #F8D7DA;
    border-color: #E7C6C9;
}

.alert-success {
    colour: #448944;
    font-weight: bold;
    background-color: #AAEEAA;
}

table {
    border-collapse: collapse;
    border: 1px solid;
    border-color: #336699;
}

table thead {
    color: #FEFEFE;
    background-color: #336699;
    border-width: 0 1px 0 1px;
    border-style: solid;
    border-color:  #336699;
}

table thead tr th {
    text-transform: capitalize;
}

table th,td {
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color:  #336699;
    padding: 0 0.3em 0.3em 0.3em;
}

.hidden {
    display: none;
}

.modal {
    position: fixed;
    opacity: 90%;
    left: 1em;
    top: 1em;
    width: 500px;
    height: 250px;
    text-align: center;
    z-index: 9999;
    background: #F4F4F4;

    border: 2px solid;
    border-radius: 1em;
}

fieldset {
    border-style: none;
    display: grid;
    grid-template-columns: 5em 1fr;
    column-gap: 5px;
}

label {
    grid-column: 1 / 2;
}

fieldset input,select,button {
    grid-column: 2 / 3;
    width: 20%;
}

input[disabled="true"],input[disabled="disabled"] {
    border-color: #878787;
    background-color: #A9A9A9;
}