-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (42 loc) · 851 Bytes
/
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
body {
background-color: rgb(222, 184, 135);
font-family: 'Courier New', Courier, monospace;
}
#ent:hover {
background-color: rgba(0, 205, 7, 0.5);
color: white;
}
#res_div {
display: grid;
justify-content: center;
background-color: rgba(118, 88, 39, 0.1);
border:0.5px solid rgb(101, 69, 31, 0.7);
padding: 30px;
max-width: 440px;
}
#title {
font-family: 'Courier New', Courier, monospace;
background-color: rgb(101, 69, 31, 0.4);
padding: 35px;
border: dashed;
font-size: 220%;
display: grid;
justify-content: center;
max-width: 440px;
}
.center-container {
display: grid;
justify-items: center;
}
input {
margin: -6px;
}
hr {
max-width: 350px;
background-color: black;
height: 0.7px;
border: none;
}
h4 {
padding: 15px;
}