-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (63 loc) · 1.17 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
64
65
66
67
68
69
70
71
72
73
74
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.outer-box{
height: 100vh;
width: 100vw;
background-color: #c9d7ed;;
}
.inner-box{
width: 400px;
margin : 0 auto;
position: relative;
top: 40%;
transform: translateY(-50%);
padding: 20px 40px;
background-color: rgb(255, 255, 255);
border-radius: 8px;
}
.signup-header h1{
font-size: 2.5rem;
color : #212121
}
.signup-header p{
font-size: 0.95rem;
color: #555;
margin-top: 5px;
}
.signup-body{
margin: 20px 0;
}
.signup-body p{
margin: 10px 0;
}
.signup-body p label{
display: block;
font-weight: bold;
}
.signup-body p input{
width: 100%;
padding: 10px;
border: 2px solid #cccc;
border-radius: 4px;
font-size: 1rem;
margin-top: 4px;
}
.signup-body p input[type="submit"]{
background-color: #1b7bf1;
border : none;
color : white;
cursor: pointer;
}
.signup-body p input[type="submit"]:hover{
background-color: #559bf6;
}
.signup-footer p{
color: #555;
text-align: center;
}
.signup-footer p a{
color : #3498db;
}