-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
49 lines (42 loc) · 1.01 KB
/
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
html,
body {
height: 100%;
width: 100%;
}
h1 {
text-align: center;
color: red;
padding: 50px;
font-family: 'Amatic SC', cursive;
}
/* Increase the font size of Home and Favorite Jokes in the navbar */
.navbar .navbar-nav .nav-link {
font-size: 1.5rem; /* You can adjust the size as needed */
}
/* Style the star emoji button */
button#star-button {
font-size: 1.8rem; /* Increase the size of the star emoji */
background-color: transparent; /* Make the button background transparent */
border: none; /* Remove the button border */
cursor: pointer;
padding: 0; /* Remove padding to make the emoji button more compact */
outline: none; /* Remove the outline when clicked */
}
/* Change the color of the star emoji to yellow on hover */
button#star-button:hover {
color: yellow;
}
#joke {
border: 3px solid black;
margin: 50px;
background: yellow;
}
button {
text-align: center;
height: 80px;
width: 280px;
}
button,
#but {
font-size: 1.3rem;
}