-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (95 loc) · 1.61 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
* {
padding: 0%;
margin: 0%;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
/* background: linear-gradient(145deg, #f0f0f0, #cacaca); */
}
.container {
max-width: 1320px;
margin-left: auto;
margin-right: auto;
width: 100%;
}
.meme-header {
text-align: center;
padding: 30px 0px;
}
.meme-header h1 {
font-size: 50px;
}
.meme-section {
padding: 20px;
margin: auto;
width: 100vh;
display: flex;
border-radius: 10px;
background: linear-gradient(145deg, #f0f0f0, #cacaca);
box-shadow: 10px 10px 20px #bebebe,
-10px -10px 20px #ffffff;
}
.meme-generator {
width: 400px;
font-family: sans-serif;
}
.meme-generator label {
display: block;
font-weight: bold;
margin-bottom: 10px;
}
.meme-generator input {
width: 100%;
box-sizing: border-box;
margin-bottom: 20px;
}
#meme {
width: 100%;
}
.meme-input-section {
display: flex;
flex-direction: column;
padding: 15px;
/* margin-left: 50px; */
width: 400px;
}
.text-section {
margin-top: 30px;
}
input[type="file"] {
display: none;
}
.input-file-section label {
background: #5969e2;
color: #fff;
padding: 15px 20px;
font-size: 18px;
cursor: pointer;
}
.button_section {
display: none;
}
.button_section p {
margin-top: 10px;
}
#export {
margin-top: 20px;
border: 1px solid #5969e2;
padding: 15px 20px;
font-size: 18px;
cursor: pointer;
transition: all 0.1s linear;
/* float: right; */
}
#export:hover {
background: #5969e2;
color: #fff;
}
.top-text {
margin-bottom: 20px;
}
#topTextInput,
#bottomTextInput {
padding: 0px 50px;
min-height: 40px;
border: 1px solid #ddd;
}