forked from anuragverma108/SwapReads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
email.css
98 lines (82 loc) · 1.5 KB
/
email.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
.newsletter-container {
background-color: #f28b82;
padding: 30px;
border-radius: 10px;
text-align: center;
max-width: 400px;
margin: 0 auto;
}
.newsletter-container h2 {
font-family: Arial, sans-serif;
font-size: 1.8em;
font-weight: bold;
color: #000;
}
.newsletter-container p {
font-size: 1em;
color: #4a4a4a;
}
.newsletter-form {
margin-top: 20px;
}
.newsletter-form input[type="email"] {
padding: 10px;
width: 100%;
max-width: 300px;
margin-bottom: 15px;
font-size: 1em;
border: 1px solid #b22222;
border-radius: 5px;
outline: none;
color: #000;
background-color: #fff;
}
.newsletter-form input[type="email"]::placeholder {
color: #b22222;
}
.newsletter-form button {
padding: 10px 30px;
background-color: #8b0000;
border: none;
color: white;
font-size: 1.2em;
cursor: pointer;
border-radius: 5px;
}
.newsletter-form button:hover {
background-color: #b22222;
}
.social-icons {
margin-top: 20px;
}
.social-icons a {
text-decoration: none;
color: #000;
font-size: 1.8em;
margin: 0 10px;
}
.social-icons a:hover {
color: #b22222;
}
/* Mobile responsiveness */
@media (max-width: 600px) {
.newsletter-container {
padding: 15px;
max-height: 300px;
}
.newsletter-container h2 {
font-size: 1.5em;
}
.newsletter-container p {
font-size: 0.9em;
}
.newsletter-form input[type="email"] {
max-width: 100%;
}
.newsletter-form button {
font-size: 1em;
}
.social-icons a {
font-size: 1.5em;
}
}