-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
99 lines (84 loc) · 1.45 KB
/
styles.scss
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
$orange: rgba(255, 100, 30, 1);
$gray_15: rgba(0,0,0,0.15);
body {
color: #333;
font-family: sans-serif;
font-size: 16px;
line-height: 21px;
border-top: 4px solid $orange;
margin: 0;
padding-top: 30px;
}
.form-section {
margin-left: auto;
margin-right: auto;
max-width: 920px;
border: 1px solid $gray_15;
border-top: 2px solid $orange;
padding: 0 20px 20px;
margin-bottom: 10px;
}
.intro-section {
margin-left: auto;
margin-right: auto;
max-width: 920px;
padding: 0 20px 20px;
}
.ss-section-title {
margin: 0 0 10px;
padding: 20px 0;
color: $orange;
}
.ss-q-title {
font-size: 18px;
font-weight: bold;
margin-top: 20px;
}
.ss-secondary-text {
color: #666;
margin: 5px 0;
font-size: 14px;
font-style: italic;
}
.ss-q-long {
width: 100%;
border: 1px solid $gray_15;
font-size: 16px;
font-family: sans-serif;
}
.required-message,
#progress-container,
.ss-password-warning {
display: none;
}
.pixar-pitch {
.ss-q-title {
display: inline-block;
}
.ss-secondary-text {
display: none;
}
.ss-q-short {
border: 0;
border-bottom: 1px solid $gray_15;
width: 400px;
margin-left: 15px;
font-size: 16px;
font-family: sans-serif;
padding: 5px;
}
}
#ss-submit {
padding: 8px 20px;
margin-top: 20px;
background-color: $orange;
border-radius: 2px;
cursor: pointer;
font-family: sans-serif;
color: white;
font-weight: bold;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 1px;
border: 1px solid $orange;
}