webapp
Форк от omaltsev/webapp
163 строки · 2.4 Кб
1.footer-container {2background-color: #242424;3padding: 4rem 0 2rem 0;4display: flex;5flex-direction: column;6justify-content: center;7align-items: center;8}
9
10.footer-subscription {11display: flex;12flex-direction: column;13justify-content: center;14align-items: center;15text-align: center;16
17margin-bottom: 24px;18padding: 24px;19color: #fff;20}
21
22.footer-subscription > p {23font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',24'Lucida Sans', Arial, sans-serif;25}
26
27.footer-subscription-heading {28margin-bottom: 24px;29font-size: 24px;30}
31
32.footer-subscription-text {33margin-bottom: 24px;34font-size: 20px;35}
36
37.footer-input {38padding: 8px 20px;39border-radius: 2px;40margin-right: 10px;41outline: none;42border: none;43font-size: 18px;44margin-bottom: 16px;45border: 1px solid #fff;46}
47
48.footer-links {49width: 100%;50max-width: 1000px;51display: flex;52justify-content: center;53}
54
55.footer-link-wrapper {56display: flex;57}
58
59.footer-link-items {60display: flex;61flex-direction: column;62align-items: flex-start;63margin: 16px;64text-align: left;65width: 160px;66box-sizing: border-box;67}
68
69.footer-link-items h2 {70margin-bottom: 16px;71}
72
73.footer-link-items > h2 {74color: #fff;75}
76
77.footer-link-items a {78color: #fff;79text-decoration: none;80margin-bottom: 0.5rem;81}
82
83.footer-link-items a:hover {84color: #e9e9e9;85transition: 0.3s ease-out;86}
87
88.footer-email-form h2 {89margin-bottom: 2rem;90}
91
92.footer-input::placeholder {93color: #b1b1b1;94}
95
96/* Social Icons */
97.social-icon-link {98color: #fff;99font-size: 24px;100}
101
102.social-media {103max-width: 1000px;104width: 100%;105}
106
107.social-media-wrap {108display: flex;109justify-content: space-between;110align-items: center;111width: 90%;112max-width: 1000px;113margin: 40px auto 0 auto;114}
115
116.social-icons {117display: flex;118justify-content: space-between;119align-items: center;120width: 240px;121}
122
123.social-logo {124color: #fff;125justify-self: start;126margin-left: 20px;127cursor: pointer;128text-decoration: none;129font-size: 2rem;130display: flex;131align-items: center;132margin-bottom: 16px;133}
134
135.website-rights {136color: #fff;137margin-bottom: 16px;138}
139
140@media screen and (max-width: 820px) {141.footer-links {142padding-top: 2rem;143}144
145.footer-input {146width: 100%;147}148
149.btn {150width: 100%;151}152
153.footer-link-wrapper {154flex-direction: column;155}156
157.social-media-wrap {158flex-direction: column;159}160}
161
162@media screen and (max-width: 768px) {163}
164