-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormStyle.css
More file actions
84 lines (73 loc) · 1.39 KB
/
FormStyle.css
File metadata and controls
84 lines (73 loc) · 1.39 KB
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
.form {
display: grid;
grid-template: 40px 40px / 1fr 1fr;
gap:17px;
margin-top:10px;
height: 50px;
}
.form-input{
border-radius: 5px;
text-indent: 5px;
border: 1px solid #D5D4D8;
}
.form-button{
grid-column: 1 / -1;
background-color: #033E3E;
color:white;
margin-top: 10px;
}
.memeContainer{
max-width: 650px;
height: auto;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.imgContainer{
width: 250px;
height: 250px;
border-radius: 8px;
margin-top:10px;
position: relative;
}
.memeimg{
width: 100%;
height: 100%;
}
.memeName{
font-size: 15px;
font-weight:600;
padding:10px 0px;
}
.meme--text {
position: absolute;
width: 80%;
text-align: center;
left: 50%;
transform: translateX(-50%);
margin: 15px 0;
padding: 0 5px;
font-family: impact, sans-serif;
font-size: 2em;
text-transform: uppercase;
color: white;
letter-spacing: 1px;
text-shadow:
2px 2px 0 #000,
-2px -2px 0 #000,
2px -2px 0 #000,
-2px 2px 0 #000,
0 2px 0 #000,
2px 0 0 #000,
0 -2px 0 #000,
-2px 0 0 #000,
2px 2px 5px #000;
}
.bottom {
bottom: 0;
}
.top {
top: 0;
}