-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (58 loc) · 1.04 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #ff0000;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
width: 350px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 15px;
padding: 25px;
background-color: #ffffff;
}
h1 {
color: #000701;
font-size: 1.8em;
}
p {
color: #070200;
font-size: 1.1em;
margin: 8px 0;
}
#msg {
font-weight: bold;
margin: 10px 0;
}
#inp {
padding: 8px;
width: 80%;
font-size: 1em;
border: 2px solid #000702;
border-radius: 5px;
outline: none;
}
button {
padding: 10px 20px;
font-size: 1em;
border-radius: 5px;
border: none;
cursor: pointer;
}
#submit {
background-color: #000701;
color: #ffffff;
}
#resBtn {
background-color: #e57373;
color: #ffffff;
margin-top: 10px;
}