-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreg.css
104 lines (88 loc) · 1.51 KB
/
reg.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
body, html {
margin: 0;
padding: 0;
display: block;
font-family: 'Lemonada', cursive;
font-size: 15px;
font-weight: normal;
line-height: 26px;
background-color: #e7e7e7;
box-sizing: border-box;
}
.wrapper {
display: block;
text-align: center;
min-height: 100%;
width: 100%;
margin-bottom: 10px;
position: relative;
}
.form-wrapper{
width: 100%;
padding: 0 20px;
}
h3, h4, p {
text-align: center;
text-transform: uppercase;
}
hr {
width: 60%;
}
label {
text-transform: uppercase;
}
.f-container {
max-width: 700px;
margin: 0 auto;
padding:0;
display: grid;
grid-template-columns: 1fr 1fr;
}
.f-container >* {
padding: 1em;
}
.form-inputs >input {
padding: 10px;
margin: 5px 0;
width: 80%;
border-radius: 10px;
}
.btn {
background-color: black;
padding: 15px 32px;
text-align: center;
text-transform: uppercase;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
color: #ffff;
border: 3px solid white;
border-radius: 10px;
transition-duration: 0.6s
}
.btn:hover {
box-shadow: 0 12px 16px 0 rgba(173, 5, 5, 0.24),0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
footer {
bottom: 0;
background-color: #000;
color: #e7e7e7;
}
.footer-container {
white-space:nowrap;
text-align:center;
}
footer ul {
list-style-type: none;
margin: 0;
}
.box {
width: 30%;
display:inline-block;
border-radius:5px;
top: 0;
}
.box h5 {
margin: 0;
}