-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.css
More file actions
78 lines (76 loc) · 1.48 KB
/
posts.css
File metadata and controls
78 lines (76 loc) · 1.48 KB
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
body {
background: url(Media/posts_bg.png) no-repeat center fixed;
background-size: cover;
}
@media only screen and (max-width: 480px) {
.banner img {
width: 100%;
}
}
@media only screen and (max-width: 900px) {
.banner img {
width: 100%;
}
}
.banner {
text-align: center;
width: 100%;
margin: auto;
}
.banner img{
box-shadow: 10px 10px 20px pink;
}
h1 {
text-align: center;
font-size: 300%;
padding-top: 20px;
font-family: "Playfair Display", serif;
/* font-family: "Arvo", serif;
font-family: "Open Sans", sans-serif; */
padding-bottom: 20px;
text-shadow: 1px 1px 5px pink;
}
.flex-container {
padding-left: 50px;
padding-right: 50px;
background: transparent;
display: flex;
flex-wrap: wrap;
padding-top: 100px;
flex-direction: row;
}
.flex img {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
}
.flex {
font-family: "Times New Roman", Times, serif;
font-size: 20px;
width: 35%;
height: auto;
text-align: center;
flex: 1 0 30%;
/* text-align: center; */
margin: 20px;
justify-content: center;
background: transparent;
color: white;
text-shadow: 1px 1px 1px pink;
display: inline-block;
}
@media only screen and (max-width:480px){
.flex{
flex: 1 0 40%;
flex-direction: column;
font-size: 10px;
}
}
.flex:hover,
.flex:focus {
box-shadow: 5px 5px 40px white;
background-color: #000000;
background-image: linear-gradient(315deg, #000000 0%, #414141 74%);
transform: scale(1.1);
}