-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (108 loc) · 1.71 KB
/
style.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-size: 18px;
font-family: sans-serif;
background-color: lightgrey;
}
main {
display: flex;
flex-direction: column;
}
.conteiner {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
margin: 0 auto 40px;
gap: 20px;
}
.border {
border: 1px solid black;
box-shadow: 3px 3px 15px rgb(72, 111, 111);
}
#inputs {
flex-flow: column;
gap: 3px;
}
#text-input {
margin: 20px auto 0;
width: 500px;
height: 30px;
background-color: rgb(232, 232, 232);
border-style: none;
border-radius: 5px;
text-align: center;
}
#meme-image-container {
background-color: white;
/* width: 84%;
height: 58%; */
width: 1124px;
height: 768px;
position: relative;
box-sizing: border-box;
}
#meme-text {
text-align: center;
width: 100%;
height: 100%;
position: absolute;
text-shadow: 5px 5px 5px black;
color: white;
font-size: 30px;
}
#meme-insert {
margin: 20px auto 0;
width: 200px;
height: 30px;
text-align: center;
}
#meme-image {
width: 100%;
height: 100%;
box-sizing: border-box;
}
.button {
width: 100px;
height: 40px;
border-radius: 10px;
color: white;
font-size: 20px;
font-weight: 900;
text-transform: capitalize;
}
#fire {
background-color: red;
}
.fire {
border: 3px dashed red;
}
#fire:hover {
background-color: rgb(255, 115, 115);
}
#water {
background-color: blue;
}
.water {
border: 5px double blue;
}
#water:hover {
background-color: rgb(96, 96, 255);
}
#earth {
background-color: green;
}
.earth {
border: 6px groove green;
}
#earth:hover {
background-color: rgb(102, 204, 102);
}
.img {
width: 200px;
height: 200px;
}