-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (59 loc) · 1.12 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
*{
margin: 0;
padding: 0;
font-family: 'poppins',sans-serif;
box-sizing: border-box;
}
body{
background-color:#20b2aa;
}
.container{
width: 500px;
margin-top: 10%;
margin-left: 30%;
padding: 20px;
border-radius: 10px;
background-color: azure;
display: flex;
flex-direction: column;
justify-content: center;
justify-items: center;
}
.container p{
font-weight: 700;
font-size: 25px;
}
.container input{
margin-top: 30px;
width: 100%;
height: 50px;
outline: 0;
font-size: larger;
border: 1px solid #494eea;
}
.container button{
width: 100%;
height: 50px;
margin-top: 30px;
color: white;
background-color: #494eea;
border-radius: 6px;
font-size: larger;
font-weight: 600;
}
#imgbox{
display: flex;
justify-content: center;
margin-top: 30px;
}
@media (max-width:600px) {
body{
background-color: #ADD8E6;
}
.container{
margin-top: 200px;
margin-left: auto;
gap: 10px;
position:absolute;
}
}