-
Notifications
You must be signed in to change notification settings - Fork 21
/
style3.css
58 lines (49 loc) · 979 Bytes
/
style3.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
*{
padding: 0;
margin: 0;
}
body{
background: url('cse4001.jpg');
background-position: center 40%;
background-size:cover;
}
.registartion-form{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 350px;
}
.registartion-form h1 {
font-size: 30px;
text-align: center;
text-transform: uppercase;
margin: 20px;
}
.registartion-form p {
font-size: 20px;
text-align: center;
margin: 15px;
}
.registartion-form input {
font-size: 16px;
padding: 15px 10px;
width: 100%;
border: 0;
border-radius: 5px;
outline: none;
}
.registartion-form button {
font-size: 18px;
font-weight: bold;
margin: 20px 0;
padding: 10px 15px;
width: 50%;
border: 0;
border-radius: 5px ;
}
@media (max-width: 850px){
body{
background-position: center 25%;
}
}