-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput page2.css
More file actions
65 lines (54 loc) · 882 Bytes
/
Copy pathinput page2.css
File metadata and controls
65 lines (54 loc) · 882 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
60
61
62
63
64
65
body{
margin: 0;
font-family: 'Nunito', sans-serif;
}
h1{
color: blue;
margin: 0.5rem;
}
p{
margin: 0.5rem;
}
input{
margin: 0.5rem;
padding: 2rem;
border: 2px solid blue;
font-family: 'Nunito', sans-serif;
font-size: 1rem;
}
.long{
width: 30rem;
}
.cont{
display: flex;
height: 100vh;
}
.div1, .div2{
margin: 0;
width: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.div2{
background-color: blue;
}
.img1{
width: 100%;
}
button{
margin: 0.5rem;
margin-left: 1rem;
padding: 1rem;
width: 90%;
font-size: 2rem;
color: white;
background-color: blue;
border: none;
}
@media only screen and (max-width: 600px) {
img{
width: 20rem;
height: 20rem;
}
}