-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (80 loc) · 1.66 KB
/
styles.css
File metadata and controls
97 lines (80 loc) · 1.66 KB
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
/* ===========================================
TABLE STYLES
=========================================== */
table {
border-collapse: collapse;
width: 100%;
border: 2px solid black;
}
th,
td {
border: 2px solid black;
text-align: center;
padding: 1px;
vertical-align: middle;
}
th {
background-color: #f4f4f4;
}
.table-responsive {
max-height: 300px;
overflow-y: auto;
width: 100%;
}
.table-responsive table {
width: 100%;
}
/* ===========================================
TABLE CELL COLORS
=========================================== */
.red-cell {
background-color: #ffe2e2;
color: rgb(0, 0, 0);
border: 2px solid black;
}
.green-cell {
background-color: rgb(223, 248, 216);
color: rgb(0, 0, 0);
border: 2px solid black;
}
/* ===========================================
SQUARE BOXES (shared base styles)
=========================================== */
.square-def,
.square-tip,
.square-objective,
.square-solution {
border: 3px solid #000;
display: table;
padding: 8px 25px;
margin: 10px auto;
text-align: center;
border-radius: 6px;
min-width: 200px;
max-width: 95%;
}
.square-def {
background-color: #e4f2fe;
}
.square-tip {
background-color: #d2f0d2;
}
.square-objective {
background-color: #e8fadb;
}
.square-solution {
background-color: #ece0ee;
}
/* ===========================================
UTILITY CLASSES
=========================================== */
.small-text {
font-size: 0.8em;
}
.example {
border-left: 5px solid #FFC107;
background-color: #FFF8E1;
padding: 10px;
margin: 10px 0;
border-radius: 4px;
}