-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
149 lines (128 loc) · 2.7 KB
/
style.css
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
@font-face {
font-family: 'Neue Haas Grotesk Display Bold';
src: url('fonts/NeueHaasDisplayBold.ttf') format('truetype');
font-style: normal;
}
body {
font-family: 'Neue Haas Grotesk Display Bold';
/* background-color: #383434; */
background-color: #f6f6f6;
color: #383434;
font-size: 30px;
}
#questionIntro {
display: flex;
align-items: center;
padding: 20vh 15vw;
}
#questionIntro img {
max-width: 100%;
height: auto;
}
#questionPhoneGoal {
padding: 3vh 3vw;
max-height: 100%;
align-items: baseline;
}
.image-container {
max-height: 100%;
margin-right: 30px;
}
.text-container {
display: flex;
flex-direction: column;
}
.button-container {
display: flex;
flex-direction: row;
}
.choice-container {
display: flex;
flex-direction: column;
align-items: flex-start;
}
#responseContainer {
right: 10px;
top: 10px;
height: 100%;
width: 100%;
overflow-y: visible;
align-items: center;
}
#backBtn {
margin-left: 20px;
}
#endBtn {
font-size: 40px;
margin-top: 30px;
color: #ee0000;
border: #ee0000;
border-style: solid;
border-width: 5px;
transition: all 0.3s; /* Add a transition for a smooth animation */
}
#endBtn:hover {
font-size: 45px; /* Increase the font size on hover */
margin-top: 25px; /* Adjust the margin-top on hover */
border-width: 8px; /* Increase the border width on hover */
}
#beginnerBtn,
#intermediateBtn,
#expertBtn {
/* width: auto; */
margin-right: 10px;
}
button {
cursor: pointer;
border: #383434;
border-style: solid;
border-width: 5px;
border-radius: 15px;
padding: 2vh 1.5vw ;
background-color: transparent;
font-family: 'Neue Haas Grotesk Display Bold';
font-size: 30px;
color: #383434;
transition: all 0.1s ease;
}
button:hover {
text-decoration: none;
color: #ee0000;
border: #ee0000;
border-style: solid;
border-width: 5px;
background-color: transparent;
transition: all 0.1s ease;
}
input {
border: #383434;
border-style: solid;
border-width: 5px;
border-radius: 15px;
padding: 2vh 1.5vw ;
background-color: transparent;
font-family: 'Neue Haas Grotesk Display Bold';
font-size: 30px;
color: #383434;
}
textarea {
border: #ee0000;
border-style: solid;
border-width: 5px;
border-radius: 15px;
padding: 2vh 2vw;
background-color: transparent;
font-family: 'Neue Haas Grotesk Display Bold';
font-size: 30px;
color: #383434;
}
.left-container {
flex: 2;
}
.right-container {
flex: 1;
flex-direction: column;
align-items: flex-start;
max-height: 100%;
overflow-y: visible;
}