-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (67 loc) · 1.11 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
75
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgb(207, 224, 159);
display: flex;
justify-content: center;
margin-top: 100px;
text-align: center;
}
.h1 h1 {
font-size: 40px;
color: rgb(31, 145, 31);
font-family: sans-serif;
font-weight: 800;
}
.para p {
font-size: 40px;
color: rgb(58, 117, 58);
font-family: sans-serif;
}
input {
height: 50px;
width: 400px;
border: 2px solid rgb(14, 112, 14);
border-radius: 15px;
text-align: center;
font-size: 15px;
}
.btn-1 {
width: 100px;
height: 30px;
background: green;
border-radius: 15px;
color: whitesmoke;
text-align: center;
padding: 3px;
border: none;
cursor: pointer;
}
.btn-2 {
width: 100px;
height: 30px;
background: green;
border-radius: 15px;
color: whitesmoke;
text-align: center;
padding: 3px;
border: none;
cursor: pointer;
}
.message {
width: 30rem;
background-color: rgb(47, 71, 11);
height: 75px;
text-align: center;
color: antiquewhite;
padding: 25px;
border-radius: 5px;
font-size: 20px;
cursor: pointer;
}
.para-text {
padding: 20px;
}