-
Notifications
You must be signed in to change notification settings - Fork 0
/
meme_styles.css
75 lines (63 loc) · 1.34 KB
/
meme_styles.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
75
body {
font-family: sans-serif;
text-align: center;
}
#canvas {
display: block;
margin: 1em auto;
cursor: pointer;
}
.captions {padding:1em;}
.center {text-align:center; }
.button-success,
.button-error,
.button-warning,
.button-secondary {
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.button-success {
background: rgb(28, 184, 65); /* this is a green */
}
.button-error {
background: rgb(202, 60, 60); /* this is a maroon */
}
.button-warning {
background: rgb(223, 117, 20); /* this is an orange */
}
.button-secondary {
background: rgb(66, 184, 221); /* this is a light blue */
}
.button-xsmall {
font-size: 70%;
}
.button-small {
font-size: 85%;
}
.button-large {
font-size: 110%;
}
.button-xlarge {
font-size: 125%;
}
@font-face {
font-family: 'Impact';
src: url('fonts/Impact.ttf') format('truetype');
}
@font-face {
font-family: 'Britannic Bold';
src: url('fonts/Britannic-Bold.ttf') format('truetype');
}
@font-face {
font-family: 'Broadway';
src: url('fonts/Broadway.ttf') format('truetype');
}
@font-face {
font-family: 'Gill Sans Ultra Bold';
src: url('fonts/Gill-Sans-Ultra-Bold.ttf') format('truetype');
}
@font-face {
font-family: 'Keep Calm Medium';
src: url('fonts/Keep-Calm-Medium.ttf') format('truetype');
}