-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
159 lines (130 loc) · 2.33 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
150
151
152
153
154
155
156
157
158
159
/*SETUP*/
*{
margin: 0 auto;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url("background.jpg");
background-size:cover;
background-repeat: repeat;
color: white;
padding-top: 2rem;
padding-bottom: 2rem;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.container{
width: auto;
max-width: 600px;
min-width: 360px;
height: auto;
margin: auto;
}
/*HEADER*/
header{
text-align: center;
background-color: dimgray;
font-family: Arial;
border-radius: 40px 40px 0px 0px;
padding: 1rem;
border: solid black 4px;
}
header p{
margin-top: 1rem;
}
/*MAIN*/
main{
background-color: rgba(25, 25, 112, 0.95);
border-left: solid black;
border-right: solid black;
font-size: 1rem;
padding-top: 1rem;
}
form{
padding: 1rem;
padding-top: 0;
margin: 0 auto;
}
fieldset legend{
text-align: center;
padding: 0 15px;
}
fieldset{
padding: 1rem;
border:none;
border-top: solid white 2px;
}
label {
display: block;
text-align: left;
padding-right: 0.5rem;
width: 100%;
}
input, select, label{
font-size: 1rem;
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 0.5rem 0;
vertical-align: middle;
}
input, select, textarea{
background-color: darkblue;
color: lightgrey;
border:solid white 2px;
border-radius: 4px;
}
.one input{
width: 100%;
height: 2rem;
}
.one label{
width: 100%;
}
.two input, select{
width: 100%;
height: 2rem;
}
.two label{
width: 60%
}
.three, .four, .five, input{
margin-right: 0.5rem;
}
textarea, button{
display: block;
margin: auto;
font-size: 1rem;
font-family: Tahoma;
}
button{
width: 40%;
padding: 1rem;
font-weight: bold;
border-radius: 5px;
background: linear-gradient(325deg, grey, white);
box-shadow: 2px 2px 2px 2px;
}
button:hover{
background: white;
}
textarea{
width: 100%;
height: 5rem;
}
/*FOOTER*/
footer{
background-color: dimgray;
border-radius: 0px 0pc 40px 40px;
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
text-align: center;
border: solid black 4px;
}
#disclaimer-text{
text-align: left;
}
/*@media (max-width: 850px) {
}*/