-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
123 lines (105 loc) · 2.09 KB
/
style.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
@import "node_modules/bootstrap/scss/bootstrap";
$color-accent-yellow: #ffe100;
$color-accent-header: #343a40;
body {
background-color: theme-color-level(dark, 2);
}
h1 {
color: $color-accent-yellow;
font-family: "Ringside Regular A", "Ringside Regular B", "Lucida Sans Unicode",
"Tahoma", "Sans-Serif";
font-size: 2.5rem;
font-weight: 700;
padding: 10px 10px 10px 10px;
}
h2 {
color: white;
font-family: "Ringside Regular A", "Ringside Regular B", "Lucida Sans Unicode",
"Tahoma", "Sans-Serif";
font-size: 1.2rem;
font-weight: 550;
letter-spacing: 0.05em;
padding: 5px 5px 10px 5px;
}
.wrapper {
display: flex;
justify-content: center;
width: 100vw;
padding-top: 30px;
}
.content {
display: flex;
width: 60vw;
flex-direction: column;
align-content: center;
}
form {
padding: 10px;
.status-text-entry {
height: 200px;
input {
width: 50%;
}
}
label {
color: white;
width: 100%;
display: flex;
justify-content: space-between;
}
.buttonset {
display: flex;
align-content: row;
justify-content: space-between;
&__title {
padding-top: 20px;
padding-right: 20px;
color: white;
}
&__buttons {
display: flex;
flex-direction: row;
align-content: center;
&__btn {
display: -webkit-inline-box;
padding: 20px;
label {
padding-left: 8px;
}
}
}
}
.submit-button {
background-color: $color-accent-header;
color: $color-accent-yellow;
border: 1px solid white;
width: 25%;
}
}
.carousel-inner {
p, h5 {
color: $color-accent-yellow;
font-family: 'Merriweather', serif;
}
.carousel-item {
img {
height: 360px;
width: 100%;
object-fit: cover;
filter: brightness(30%) grayscale(90%);
}
}
}
.question-box {
background-color: $color-accent-header;
font-family: 'Merriweather', serif;
color: white;
padding: 10px;
margin: 10px 0 10px 0;
&__title {
font-weight: bold;
font-size: 1rem;
letter-spacing: 0.06em;
padding-bottom: 5px;
}
}