-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (64 loc) · 1.21 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
body {
margin: 0 auto;
background-color: black;
color: white;
font-family: sans-serif;
text-align: center;
}
.button {
margin: 50px 10px;
text-align: center;
color: white;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
background-color: black;
width: 150px;
padding: 10px 30px;
font-size: 20px;
font-weight: bold;
border: 2px solid white;
border-radius: 10px;
cursor: pointer;
transition: 0.2s ease;
}
button[type="button"] {
outline: none;
}
button:active {
scale: 0.9;
}
#joke,
#delivery {
padding: 50px;
font-size: 30px;
text-align: center;
color: black;
/* background-color: lightgreen; */
}
#delivery {
display: none;
}
h1 {
margin-top: 50px;
font-weight: bold;
font-size: 50px;
margin-bottom: -10px;
}
#copy_btn {
all: unset;
background-color: white;
padding: 10px 20px;
color: black;
font-size: larger;
border-radius: 5px;
outline: none !important;
transition: all 100ms ease;
font-weight: bold;
display: none;
align-items: center;
gap: 10px;
margin: 30px auto;
}
#copy_btn > img {
width: 20px;
}