-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (53 loc) · 933 Bytes
/
style.css
File metadata and controls
64 lines (53 loc) · 933 Bytes
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
body {
width: 100vw;
height: 100vh;
text-align: center;
background-color: rgb(34, 24, 24);
}
main {
width: 360px;
height: 500px;
text-align: center;
background: rgb(41, 41, 41);
border: 3px solid black;
border-radius: 10px;
margin-left: auto;
margin-right: auto;
margin-top: 0;
}
h1 {
color: #fff;
}
strong{
color: red;
}
input {
border: 1px solid black;
background-color: rgb(110, 0, 0);
width: 90%;
height: 40px;
margin-top: 10px;
border-radius: 10px;
text-align: center;
font-size: 20px;
color: #fff;
}
p {
font-size: 20px;
font-weight: bold;
color: #fff;
}
button {
font-size: 20px;
width: 180px;
margin-top: 10px;
border: 1px solid black;
background: rgb(110, 0, 0);
color: #fff;
height: 30px;
border-radius: 5px;
cursor:pointer;
}
button:hover {
background: red;
}