Newer
Older
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
#audit {
padding: 20px 100px;
header {
h3 {
font-weight: 500;
font-size: 1.2rem;
}
}
}
.audit-metadata {
display: flex;
justify-content: space-between;
line-height: 0.5rem;
}
.audit-section-controles {
text-align: center;
button {
margin: 20px 40px;
padding: 0 30px;
}
}
header,
section {
border-bottom: solid 1px #616161;
padding: 20px 75px;
&:last-child {
border-bottom: none;
}
&.no-padding {
padding: 0;
}
&.no-horizontal-padding {
padding-left: 0;
padding-right: 0;
}
&.no-vertical-padding {
padding-top: 0;
background-position: 0;
}
}
.indent {
margin-left: 20px;
}
.tight {
margin: 2px auto;
}
.faded {
color: #616161;
}
.text-align-center {
text-align: center;
}
.text-align-right {
text-align: right;
}
.text-align-left {
text-align-last: left;
}
.uppercase {
text-transform: uppercase;
}
.pre-wrap {
white-space: pre-wrap;
}

Scott Berg
committed
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
126
.requirement-title {
display: flex;
justify-content: flex-start;
font-size: 1.35rem;
&.status-ok {
color: #2e7d32;
}
&.status-no {
color: #c5050c;
}
}
.requirement-icon-outer {
margin: 20px 15px 0 0;
font-size: 1.75rem;
}
.content-type {
margin-bottom: 5px;
> p {
margin: 2.5px auto;
}
}
.content-type-okSubrequirementTLine,
.content-type-noSubrequirementTLine {
margin-top: 20px;
}
.content-type-okSubrequirementCourses,
.content-type-noSubrequirementCourses {
color: #0479a8;
margin-left: 20px;
}
.content-type-okSubrequirementNeedsSummaryLine,
.content-type-noSubrequirementNeedsSummaryLine,
.content-type-noRequirementNeedsLine {
color: #c5050c;
margin-left: 20px;
}