-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (68 loc) · 1.46 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
:root {
--bg-color: hsl(257, 40%, 49%);
}
body {
background-color: var(--bg-color);
background-image: url(/assets/images/bg-mobile.svg);
background-repeat: no-repeat;
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
font-weight: 400;
color: whitesmoke;
padding: 21px;
}
.logo {
max-width: 40%;
margin-bottom: 41px;
}
.banner {
max-width: 100%;
}
@media screen and (min-with: 768px) {
.main {
display: flex;
}
}
.article {
text-align: center;
margin-top: 4rem;
}
.title {
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
margin: 21px 0;
padding: 0 15px;
}
.text {
font-weight: lighter;
}
.button {
text-decoration: none;
font-weight: 600;
color: var(--bg-color);
background-color: aliceblue;
padding: 11px 45px;
border-radius: 25px;
margin: 21px 0 41px 0;
display: inline-block;
box-shadow: 0 3px 0 3px rgba(0, 0, 0, 0.3);
}
.social {
display: flex;
justify-content: center;
list-style: none;
padding-left: 0;
margin: 0;
}
.social__items {
display: flex;
justify-content: center;
align-items: center;
list-style: none;
}
.social-link__icon {
color: inherit;
font-size: 15px;
margin: 10px 0;
}
.social__icon {
font-size: 25px
}