-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (87 loc) · 1.54 KB
/
styles.css
File metadata and controls
102 lines (87 loc) · 1.54 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
98
99
100
101
102
body {
margin: 20px;
}
textarea {
margin-bottom: 10px;
}
#auto-generation,
.exemptions {
border-radius: 15px;
padding: 20px;
padding-bottom: 25px;
margin-top: 20px;
margin-bottom: 20px;
background: #e6e6e6;
width: 100%;
max-width: 800px;
box-sizing: border-box;
}
.exemptions {
max-width: 1300px;
}
#github-url-form,
#exemptions-checklist {
margin-top: 25px;
width: 100%;
}
#repo-url {
width: 100%;
max-width: 750px;
box-sizing: border-box;
}
#repo-url-button {
margin-top: 10px;
border-radius: 5px;
}
#notification {
padding: 10px;
margin-bottom: 15px;
border-radius: 5px;
position: relative;
width: 100%;
max-width: 800px;
box-sizing: border-box;
animation: slideDown 0.3s ease;
}
#notification-message {
margin: 0;
padding-right: 20px;
}
.step-header {
display: flex;
align-items: center;
gap: 0.5em;
}
.step-number {
margin-top: 10px;
background-color: #337AB7;
color: white;
font-weight: bold;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
}
.exemptions-quiz-container #quiz-subheading {
margin: 10px 0px 20px 0px;
}
.not-exempt {
color: green;
display: inline-block;
}
/* .results-container p {
margin: 20px 0px;
} */
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}