-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (55 loc) · 960 Bytes
/
style.css
File metadata and controls
59 lines (55 loc) · 960 Bytes
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
*{
margin: 0;
padding: 0;
text-align: center;
box-sizing: border-box;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #424ef5;
}
.full{
display: flex;
font-size: 20px;
color: tomato;
align-items: center;
justify-content: center;
}
.full section{
width: 400px;
height: 300px;
display: grid;
align-items: center;
justify-content: center;
border: 2px solid black;
}
h1{
margin-top: 20px;
}
select{
width: 250px;
height: 30px;
margin-top: 40px;
}
input{
font-size: 20.7px;
margin-top: 40px;
}
button{
font-size: 25px;
margin-top: 30px;
background-color: royalblue;
}
@media screen and (max-width: 410px){
.full{
width: 300px;
}
}
@media screen and (max-width: 310px){
.full{
width: 250px;
}
}