-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
83 lines (72 loc) · 1.52 KB
/
styles.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
body {
width: 100%;
height: 100%;
margin: 0;
background-image: url(https://wallpapercave.com/wp/wp5342493.jpg);
background-position: center;
background-size: fill;
color: white;
font-family: helvetica;
font-size: 20px;
}
h1, p{
margin: 1em auto;
text-align: center;
filter: drop-shadow(2px 2px black);
}
p {
margin-top: -1em;
font-style: italic;
}
form {
background-color: rgba(127,127,127, 0.1);
backdrop-filter: blur(10px);
border: 2px solid white;
width: 60vw;
max-width: 500px;
min-width: 300px;
margin: 0 auto;
padding: 2em;
border-radius: 10px;
}
section {
border: none;
padding: 2rem 0;
}
label {
padding-top: 1em;
display: block;
filter: drop-shadow(1px 1px black);
}
input, textarea, select{
margin: 10px 0 0 0;
width: 100%;
min-height: 3em;
color: grey;
border: 1px solid white;
border-radius: 5px;
}
.inline {
width: unset;
margin: 0 0.5em 0 0;
vertical-align: middle;
}
input[type="checkbox"], input[type="radio"]{
display: inline;
}
input[type="submit"] {
display: block;
margin: 1em auto;
height: 2em;
min-width: 300px;
background-color: rgb(0,117,255);
border-color: rgb(51,110,179);
filter: drop-shadow(2px 2px 1px black);
color: white;
font-size: 20px;
}
input[type="submit"]:hover {
background-color: rgb(0, 200, 0);
border-color: rgb(0,170, 0);
cursor: pointer;
}