-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjokes.css
63 lines (54 loc) · 1.05 KB
/
jokes.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
* {
user-select: none;
text-align: center;
}
h1 {
color: rgb(255, 0, 0);
background-color: aqua;
font-family: Georgia, "Times New Roman", Times, serif;
border: 2px solid red;
border-radius: 10px;
overflow: auto;
}
h2 {
color: chartreuse;
font-family: sans-serif;
}
h3 {
color: aqua;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
/* jokes div */
.joke-div {
text-align: center;
background-color: blueviolet;
border: 3px solid rgb(255, 0, 170);
padding: 20px;
margin: 50px;
border-radius: 20px;
}
/* jokes button */
#joke-btn {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 20px;
color: rgb(0, 0, 255);
background-color: rgb(104, 255, 11);
cursor: pointer;
border-radius: 10px;
box-shadow: 4px 4px 5px red, 6px 6px 6px;
overflow: auto;
}
#joke-btn:hover {
font-size: 25px;
background-color: rgb(229, 255, 0);
overflow: hidden;
}
button {
color: aquamarine;
background-color: red;
padding: 6px;
margin: 4px;
border-radius: 4px;
cursor: pointer;
font-size: 30px;
}