-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (84 loc) · 1.78 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
body {
background-color: black;
display: flex;
justify-content: center;
height: 100vh;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.title {
width: 300px;
text-align: center;
}
#form-container {
height: 150px;
width: 400px;
position: center;
text-align: center;
font-weight: bold;
font-size: 20px;
color: rgb(255, 255, 255);
}
#url-image, #top-text-input, #bottom-text-input, #button {
margin: 5px;
align-items: center;
}
#button {
margin: 10px;
color: rgb(255, 255, 255);
font-size: 20px;
background-color: rgb(1, 169, 241);
padding: 5px;
border-radius: 10px;
font-weight:bolder;
}
#meme-container {
display: flex;
flex-direction: column;
}
.inner-div{
position: relative;
}
.loaded-image {
align-items: center;
width: 300px;
height: 400px;
border-radius: 20px;
border-style: double;
border-width: 10px;
border-color: greenyellow;
}
.top-text {
position: absolute;
left: 50px;
border-radius: 20px;
top: 10px;
color: black;
width: 300px;
font-size: 20px;
word-wrap: break-word;
overflow-wrap: break-word;
background-color: rgba(255, 255, 255, 0.551);
}
.bottom-text {
position: absolute;
left: 50px;
border-radius: 20px;
bottom:70px;
color: black;
width: 300px;
word-wrap: break-word;
overflow-wrap: break-word;
font-size: 20px;
background-color: rgba(255, 255, 255, 0.551);
}
.delete-button {
margin: 10px;
color: black;
font-size: 15px;
background-color: greenyellow;
padding: 5px;
border-radius: 10px;
width:90px;
align-self: center;
font-weight: bolder;
}