-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (53 loc) · 971 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
55
56
57
58
59
60
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600&display=swap");
body {
font-family: "Work Sans", sans-serif;
font-size: 24px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
text-align: center;
}
input {
width: 30%;
padding: 10px;
border-radius: 5px;
margin-bottom: 10px;
}
button {
max-width: 150px;
padding: 5px;
border-radius: 10px;
/* background-color: rgb(230, 230, 230); */
background-color: #1e6a35;
color: #f9ed92;
font-size: 16px;
border: none;
margin-bottom: 10px;
margin-left: 10px;
}
button:hover {
background-color: #f9ed92;
color: white;
}
#spongebob {
height: 150px;
}
li {
list-style: none;
}
#mainDiv {
border: solid black 1px;
width: 80%;
margin: 0 auto;
}
#mainDiv ul {
margin: 0 auto;
/* background-color: aqua;
width: 50%; */
text-align: center;
padding: 5px;
border-bottom: 1px solid black;
}
/* #mainDiv ul button {
float: right;
} */