-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (82 loc) · 1.35 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
color: white;
background-color: black;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
main {
display: flex;
min-width: 35vw;
justify-content: center;
align-items: center;
}
main h2 {
font-size: 2rem;
}
.heading {
position: absolute;
top: 4vmax;
left: 37vmax;
}
form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 10vh 1vw;
width: 100%;
}
form select,
button,
input {
width: 50%;
margin: 1rem;
height: 2rem;
}
form input {
/* height: 5vh; */
font-size: large;
}
form p {
font-size: large;
}
.dropdown {
display: flex;
justify-content: space-between;
align-items: center;
}
.select-container {
display: flex;
align-items: center;
justify-content: center;
}
.dropdown img {
font-size: 2rem;
padding: 10px;
}
.message {
margin: 2vh;
text-align: center;
color: black;
background-image: linear-gradient(red, yellow);
font-weight: 900;
}
form button {
font-size: large;
cursor: pointer;
}
@media screen and (max-width: 550px) {
.heading{
position: absolute;
top: 10vmax;
left:12vmax;
}
}