-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
72 lines (68 loc) · 1.05 KB
/
index.css
File metadata and controls
72 lines (68 loc) · 1.05 KB
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
h1{
text-align: center;
}
form{
display: flex;
flex-direction: column;
justify-content: center;
width: 30%;
}
body{
display: flex;
align-items: center;
justify-content: center;
font-family: sans-serif;
}
.submitbtn{
background-color:rgb(0, 102, 255);
color: #fff;
padding: 2%;
font-size: 22px;
margin-top: 10px;
bottom:0 ;
cursor: pointer;
}
input{
padding: 2%;
}
label{
font-size: 20px;
font-weight: bolder;
margin-top:20px;
}
@media(min-width:300px) and (max-width:500px){
form{
width: 80%;
}
label{
color: green;
}
#form-body{
margin-top: 15%;
}
}
#form-body{
margin-top: 10%;
border:2px solid black;
padding: 5%;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.input{
border-radius: 15px;
}
.input:hover{
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
button{
margin-top: 10%;
}
#terms{
font-size: 15px;
cursor: pointer;
}
#terms_check{
margin-bottom: -15px;
}
#conditionbox{
display: inline-flex;
}