-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (43 loc) · 889 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (43 loc) · 889 Bytes
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
@import url(https://fonts.googleapis.com/css?family=Shadows+Into+Light|Covered+By+Your+Grace);
body {
padding-top: 20px;
background: #398cbf;
}
.joke {
width: 400px;
margin: auto;
background: #3a4654;
color: #fff;
font-family: 'Shadows Into Light', cursive;
font-size: 50px;
text-align: center;
box-shadow: 0px 0px 5px #000;
}
.joke p {
margin: 0px;
padding: 30px 0;
}
button {
position: relative;
top: -25px;
background-color:#2c3643;
border: none;
display:block;
margin: auto;
cursor:pointer;
color:#fff;
font-family: 'Covered By Your Grace', cursive;
font-size:30px;
padding:6px 18px;
text-decoration:none;
box-shadow: 0px 0px 5px #000;
}
button:hover { background-color:#727272; }
button:focus { outline: none; }
/* Add and Remove using JS */
.hide {
display: none;
}
.show {
display: block;
}