-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
54 lines (48 loc) · 960 Bytes
/
custom.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
.main {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(183, 127, 194);
}
.container {
width: 35rem;
box-shadow: 0px 0px 5px grey;
display: flex;
background-color: white;
border-radius: 10px;
overflow: hidden;
flex-direction: column;
}
.col {
text-align: justify;
padding: 15px;
width: 95%;
}
#submit {
width: 100%;
background-color: rgb(101, 4, 75);
transition: 0.5s;
color: white;
outline: none;
border: none;
font-size: 25px;
display: block;
padding: 10px;
cursor: pointer;
}
#submit:hover {
background-color: rgb(34, 6, 53);
}
.box {
box-shadow: 0px -1px 1px grey;
width: 100%;
}