-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (88 loc) · 1.62 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
* {
box-sizing: border-box;
}
body {
font-family: "Karla", sans-serif;
margin: 0;
}
main {
padding: 36px;
}
.header {
display: flex;
align-items: center;
height: 65px;
background: linear-gradient(90deg, #672280 1.18%, #A626D3 100%);
color: white;
padding: 20px;
}
.header--image {
height: 100%;
margin-right: 6px;
}
.header--title {
font-size: 1.25rem;
margin-right: auto;
}
.header--project {
font-size: 0.75rem;
font-weight: 500;
}
.form {
display: grid;
grid-template: 40px 40px / 1fr 1fr;
gap: 17px;
margin-bottom: 17px;
}
.form--input {
font-family: "Karla", sans-serif;
border-radius: 5px;
border: 1px solid #D5D4D8;
text-indent: 5px;
}
.form--button {
grid-column: 1 / -1;
font-family: "Karla", sans-serif;
border-radius: 5px;
background: linear-gradient(90.41deg, #711F8D 1.14%, #A818DA 100%);
color: white;
border: none;
cursor: pointer;
}
.meme {
position: relative;
}
.meme--image {
max-width: 100%;
border-radius: 3px;
}
.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;
}