-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
115 lines (101 loc) · 2.08 KB
/
styles.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
* {
padding: 0;
margin: 0;
}
html, body {
height: 100%;
width: 100%;
font-family: "Helvetica-Neue", Helvetica, sans-serif;
}
body {
background: #ed4853;
color: #fff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
img {
display: block;
}
.wrapper {
max-width: 1100px;
width: 100%;
margin: 20px auto;
}
h1 {
font-size: 26px;
}
a {
color: #fff;
}
main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-line-pack: center;
align-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
justify-content: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 20px 70px;
}
.img-screenshot {
max-width: 400px;
width: 100%;
border: 5px solid #fff;
border-radius: 5px;
}
.main-link {
display: block;
margin-top: 20px;
}
footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
font-size: 12px;
margin: 0 20px;
}
main div, .img-screenshot {
margin: 0 30px;
}
@media screen and (max-width: 1070px) {
main {
margin-bottom: 30px;
}
main div {
margin: 10px 0;
}
body {
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
footer p {
margin-bottom: 10px;
}
}