-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (46 loc) · 931 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
body {
margin: 0px;
font-size: 2rem;
background-color: lightgreen;
font-family: 'Lobster', cursive;
color: black;
}
.container {
text-align: center;
}
#jokeDisplay {
border: 2px solid rgb(0, 0, 0);
border-radius: 30px;
background-color: lightcyan;
height: 170px;
width: 50%;
display: flex;
align-items: center;
justify-content: center;
padding-left: 8px;
padding-right: 8px;
font-size: 40px;
margin-left: 25%;
margin-bottom: 3%;
font-weight: 500;
}
#buttons {
font-size: 50px;
}
select {
font-size: 2rem;
padding: 6px;
border-radius: 10px;
font-family: 'Lobster', cursive;
background-color: rgb(183, 0, 255);
color: aliceblue;
cursor: pointer;
}
button {
font-size: 2rem;
padding: 8px;
border-radius: 15px;
font-family: 'Lobster', cursive;
background-color: lightskyblue;
cursor: pointer;
}