-
Notifications
You must be signed in to change notification settings - Fork 107
/
subscribe.css
115 lines (95 loc) · 2.05 KB
/
subscribe.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
115
.news-main {
padding-top: 0px;
padding-bottom: 60px;
}
.newsletter-wrapper {
background-color: rgb(94, 94, 94);
border-radius: 8px;
padding: 1rem;
margin: 0 auto;
backdrop-filter: blur(10px);
min-height: 30vh;
max-width: 500px;
margin: auto;
background-color: rgba(255, 255, 255, 0.2);
padding: 20px;
border-radius: 8px;
display: flex;
max-width: 768px;
flex-direction: column;
align-items: center;
box-shadow: 0 0 20px rgba(255, 204, 1, 0.8), 0 0 30px rgba(255, 230, 0, 0.866);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.5);
}
.newsletter-section {
color: white;
padding: 40px 0;
}
.newsletter-content {
max-width: 600px;
margin: 0 auto;
text-align: center;
}
.newsletter-content h2 {
font-size: 24px;
margin-bottom: 10px;
color: white;
}
.newsletter-content p {
font-size: 16px;
margin-bottom: 20px;
}
.email-input {
color: rgb(252, 251, 251) !important;
width: 100%;
border-radius: 10px;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
font-size: medium;
background-color: #414141 !important;
}
@media (max-width: 780px) {
.email-input {
width: 80%;
}
}
.subscribe-button {
padding: 10px 20px;
border: none;
background-color: rgb(238, 10, 10);
color: white;
border-radius: 5px;
cursor: pointer;
}
.subscribe-button:hover {
background-color: #580303;
}
@media (prefers-color-scheme: dark) {
.newsletter-wrapper {
background-color: #333;
color: #e5e5e5;
}
.newsletter-section {
color: #e5e5e5;
}
.newsletter-content h2 {
color: #e5e5e5;
}
.newsletter-content p {
color: #e5e5e5;
}
.email-input {
background-color: #ac0606 !important;
color: #e5e5e5;
border: 1px solid #666;
}
.subscribe-button {
background-color: #580303;
color: #e5e5e5;
}
.subscribe-button:hover {
background-color: #357ae8;
}
}