-
Notifications
You must be signed in to change notification settings - Fork 0
/
newsletter.css
62 lines (60 loc) · 935 Bytes
/
newsletter.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
.center {
display: flex;
}
.waz {
font-size: 110px;
}
.import_news_letters {
display: flex;
justify-content: center;
}
.wars h1 {
font-size: 26px;
}
.wars {
width: 60%;
margin: auto;
}
.cadastrar .center {
position: relative;
top: 40px;
}
.send_newsletter {
background: black;
color: yellow;
padding: 10px;
border: none;
border-radius: 0px 10px 10px 0px;
}
.input_send_newsletters {
border: none;
box-shadow: 3px 6px 10px 8px #b3afaf;
padding: 0px 100px 0px 10px;
}
@media (max-width:768px) {
.import_news_letters {
display: block;
margin: auto;
}
.cadastrar .center {
justify-content: center;
}
.center {
display: flex;
width: 90%;
margin: auto;
}
.waz {
font-size: 100px;
}
.wars h1 {
font-size: 16px;
}
.input_send_newsletters {
padding: 0px;
}
.cadastrar .center {
position: relative;
top: 0px;
}
}