-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (55 loc) · 859 Bytes
/
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
/*header*/
.header {
display: flex;
padding: 15px;
}
.icon {
cursor: pointer;
}
.icon:hover {
opacity: 0.5;
}
.page_post {
width: 550px;
padding: 30px;
margin: 10px;
border-width: 0.5px;
color: black;
}
.page_area_col {
display: flex;
flex-direction: row;
}
.post_area {
background-color: white;
padding: 20px;
display: flex;
border-bottom-right-radius: 25%;
}
.newsl {
width: 500px;
margin: auto;
border-radius: 50px;
background-color: white;
padding: 40px;
}
/*controls*/
@media only screen and (max-width: 540px) {
.newsl {
width: 100%;
}
}
@media only screen and (max-width: 900px) {
.header {
flex-direction: column;
text-align: center;
}
.post_area {
flex-direction: column;
}
}
@media only screen and (max-width: 1180px) {
.page_area_col {
flex-direction: column;
}
}