-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
53 lines (45 loc) · 785 Bytes
/
styles.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
.block {
display: block;
}
.full-width {
width: 100%;
}
body {
display: flex;
justify-content: center;
font-family: sans-serif;
background: linear-gradient(to bottom right, #4c4973, #282644);
color: white;
}
.container {
width: 50%;
/* border: 2px solid red; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#title {
font-weight: bolder;
}
#name-label, #email-label, #number-label, #number-label {
/* margin-bottom: 1rem; */
}
.form-div {
color: white;
background-color: #282644;
width: 91%;
padding: 3em 3em;
border-radius: 5px;
}
.box {
margin-top: 1rem;
}
.submit-btn {
background-color: #37af65;
height: 40px;
border-radius: 2px;
border: none;
color: white;
cursor: pointer;
}