-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (57 loc) · 1.09 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
@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
max-width: 80%;
/* background-color: rgb(223, 117, 223); */
padding: 34px;
margin: auto;
}
h1 {
font-family: 'Sriracha', cursive;
text-align: center;
font-size: 40px;
}
p {
font-size: 20px;
text-align: center;
}
input, textarea {
border: 1px solid black;
border-radius: 6px;
outline: none;
width: 80%;
margin: 11px 0;
padding: 7px;
font-size: 16px;
}
form {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.btn {
color: white;
background-color: purple;
padding: 8px 12px;
font-size: 20px;
border: 2px solid white;
border-radius: 14px;
cursor: pointer;
}
.bg {
width: 100%;
position: absolute;
z-index: -1;
opacity: 0.8;
}
.msg {
font-size: 25px;
color: rgb(25, 25, 87);
font-weight: 600;
margin: 20px 0 5px;
}