-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
110 lines (87 loc) · 1.38 KB
/
main.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
* {
box-sizing:border-box;
}
html {
background-color: #D9CDD2;
font-family: 'Roboto Slab', serif;
margin: 10px 10px 10px 10px;
text-align:center;
width:100%;
position: relative;
}
body {
display: flex;
align-items: center;
justify-content: center;
}
/*
#logo {
position: absolute;
top: 0px;
left: 0px;
height: 150px;
width: 150px;
}
*/
.header {
letter-spacing: 0.2em;
text-align:center;
}
.subheader {
letter-spacing: 0.1em;
text-align: center;
}
.radio {
flex-direction: row;
margin: 5px 5px 5px 5px;
}
.radioContainer {
border:none;
display: flex;
flex-direction: row;
justify-content: center;
break-before: always;
margin: 5px 5px 5px 5px;
}
.radioDiv {
margin: 0 1.81em 0 0;
}
.directions {
font-size: 14px;
}
.textarea {
width: 100%;
margin: 5px 5px 5px 5px;
padding: 5px 5px 5px 5px;
font-family: 'Roboto Slab', serif;
}
.button {
margin: 5px 5px 5px 5px;
font-family: 'Roboto Slab', serif;
}
@media (max-width: 425px) {
.header {
font-size: 16px;
}
.subheader {
font-size: 10px;
}
.chooseOne {
font-size: 14px;
}
.radio {
flex-direction: column;
}
.radioContainer {
flex-direction: column;
}
label {
font-size: 14px;
}
.directions {
font-size: 14px;
}
.textarea {
font-size: 14px;
}
}