-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (59 loc) · 1.02 KB
/
styles.css
File metadata and controls
69 lines (59 loc) · 1.02 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
body {
padding: 20px 40px;
}
textarea {
margin-bottom: 10px;
}
.auto-generation,
.exemptions {
border-radius: 15px;
padding: 10px 20px;
padding-bottom: 25px;
margin-bottom: 20px;
background: #f4f4f4;
width: 100%;
max-width: 1300px;
box-sizing: border-box;
}
#github-url-form {
margin-bottom: 0px;
}
.usa-alert {
margin-bottom: 15px;
max-width: 1300px;
animation: slideDown 0.3s ease;
}
.step-header {
display: flex;
align-items: center;
gap: 0.5em;
}
.step-number {
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;
}
.not-exempt {
color: green;
display: inline-block;
}
.button-actions {
margin-top: 20px;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}