-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeme.css
98 lines (73 loc) · 1.42 KB
/
meme.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body {
background-image: linear-gradient(to right, rgb(195, 20, 50), rgb(36, 11, 54));
min-width: 99vw;
min-height: 99vh;
background-repeat: no-repeat;
}
#meme-header {
text-align: center;
color: rgb(202, 199, 199);
letter-spacing: .5em;
font-size: 3em;
margin-bottom: 10%;
font-family: 'Permanent Marker', serif;
}
.meme-form {
text-align: center;
}
#complete {
display: flexbox;
}
.complete-image {
width: 100%;
position: relative;
}
.header {
position: relative;
color:white;
width:100%;
height: 100%;
font-size: 1em;;
line-height: 25px;
top: -180px;
font-family: 'Permanent Marker', serif;
}
.footer {
position: relative;
color: white;
width:100%;
height: 100%;
font-size: 1em;
line-height: 25px;
top: -75px;
font-family: 'Permanent Marker', serif;
}
img {
border: 5px solid black;
}
img:hover {
opacity: .5;
cursor: pointer;
}
input[type=submit] {
margin-bottom: 1em;
transition-duration: 0.4s;
border-radius: 50%;
}
input[type=submit]:hover {
background-color: rgb(128, 114, 127); /* Green */
color: white;
cursor: pointer;
}
input[type=text] {
width: 50%;
background-color: rgb(85, 80, 80);
padding: 10px;
color: white;
}
input[type=url] {
width: 50%;
background-color: rgb(85, 80, 80);
padding: 10px;
color: white;
}