-
Notifications
You must be signed in to change notification settings - Fork 0
/
media.css
95 lines (73 loc) · 1.04 KB
/
media.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
@media screen and (max-width: 760px){
header{
flex-direction:column;
justify-content: space-between;
margin: 0 auto;
}
#title h1 {
font-size:30px;
}
#title span {
font-size:30px;
}
ul {
text-align:center;
padding: 0;
}
main {
flex-direction: column;
}
aside{
text-align: center;
}
h2{
font-size: 30px;
}
p {
font-size: 15px;
margin: 8px 20px 8px 20px;
}
.blocks{
flex-direction: column;
}
.area-form h2 {
font-size: 25px;
margin-bottom:5px;
}
form-box form{
margin: 0 auto;
width: 60%;
}
.btn-submit {
width:100%;
}
.form-box input{
width: 300px;
align-self: center;
}
textarea{
width:300px;
align-self:center;
}
.content-area h2{
font-size: 30px;
}
.content-area p{
max-width:auto;
font-size:18px;
margin-left: 20px;
margin-right:20px;
padding:20px;
}
.blocks-area{
flex-direction: column;
max-width:50%;
margin-bottom:10px;
}
.block-area{
margin-bottom:20px;
}
.block-area h3{
text-align: center;
}
}