-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemenerator.css
76 lines (64 loc) · 1.08 KB
/
memenerator.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
76
html, body {
margin: 0;
padding: 0;
font-family: "Open Sans", sans-serif;
}
.header {
background: #ffe780;
margin-bottom: 40px;
padding: 10px 0;
}
.header img {
width: 90px;
margin: -10px 10px 0 0;
}
.header h1 {
margin: 0;
display: inline-block;
}
.meme {
position: relative;
}
.top-caption,
.bottom-caption {
font-family: Impact, sans-serif;
color: #fff;
text-shadow: #000 0px 0px 6px;
text-transform: uppercase;
text-align: center;
font-size: 50px;
}
.top-caption {
top: 10px;
left: 0;
right: 0;
margin: 0 auto;
position: absolute;
}
.bottom-caption {
bottom: 10px;
left: 0;
right: 0;
margin: 0 auto;
position: absolute;
}
.tool h2 {
margin-top: 0;
margin-bottom: 20px;
font-size: 25px;
}
.tool form label {
margin-bottom: 10px;
}
.tool input {
border-radius: 0;
border: 0;
border-bottom: 5px solid #ff7171;
box-shadow: none;
}
input[type="text"]:focus {
border: 0;
border-bottom: 5px solid #ff7171;
outline: 0;
box-shadow: none;
}