-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (58 loc) · 1.17 KB
/
styles.css
File metadata and controls
64 lines (58 loc) · 1.17 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
@keyframes bob {
0%{transform: scale(1);}
50%{transform: scale(1.1);}
100%{transform: scale(1);}
}
.postTitle{
text-align: center;
/* color:red; */
font-family: "Concert One";
font-size: 3.5em;
color: #FF69B4;
/* text-decoration: none; */
}
.postBody{
font-family: "Concert One";
font-size: 1.5em;
color: black;
}
#issueContainer{
text-align: center;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.containerLink{
text-decoration: none;
}
.postContainer{
background-color: #fcb4d8;
box-shadow: 0px 0px 20px 5px #FF69B4;
border-radius: 50px;
border-color: #FF69B4;
border-width: 3px;
border-style: solid;
padding: 5px;
margin: 15px;
transition: all 0.1s;
}
/*.postContainer:hover{
transform: scale(0.9);
}*/
.postImage{
border-radius: 10px;
}
#mainHeader{
font-family: "Concert One";
text-align: center;
font-size: 5em;
color: #FF69B4;
/* animation-duration: 2s;
animation-name: bob;
animation-fill-mode: both;
animation-iteration-count: infinite; */
}
body{
background-color: #ffcde6;
}