-
Notifications
You must be signed in to change notification settings - Fork 10
/
action-page.css
161 lines (131 loc) · 2.5 KB
/
action-page.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
* CSS ONLY FOR THE ACTION PAGE
* */
/* ===============
SOCIAL MEDIA POSTS
=============== */
.post {
display: flex;
flex-direction: column;
margin: 0 5px 0.6em;
padding: 20px;
padding-bottom: 5px;
border: 2px solid var(--bg2);
font-size: 20px;
line-height: 1.1;
color: var(--fg);
font-family: "Atkinson Hyperlegible";
resize: none;
}
.post p:first-child {
margin-bottom: 0;
}
.post p:nth-child(2) {
font-size: 0.7em;
}
.post div {
margin-top: auto;
}
.post button,
.post .button,
.post-gallery button,
.post-gallery .button {
font-size: 0.7em;
}
/* POST GALLERY */
.wrapper-columns .post {
width: 33.33%;
/* padding-bottom: 1em; */
}
.post-gallery {
vertical-align: top;
margin: 0.5em auto 1em;
background-color: var(--bg2);
padding: 10px 15px;
margin-bottom: 0.4em;
box-shadow: var(--aside-shadow);
}
.post-gallery div:first-child {
display: flex;
flex-direction: column;
align-content: center;
flex-wrap: wrap;
height: 21em;
justify-content: center;
}
.post-gallery div:nth-child(2) {
width: 80%;
max-width: 600px;
}
.post-gallery img {
max-height: 20em;
max-width: 100%;
vertical-align: top;
box-shadow: var(--aside-shadow);
}
/* MOBILE STYLES */
@media only screen and (max-width: 1320px) {
.post p {
font-size: 18px;
}
}
@media only screen and (max-width: 900px) {
.post-gallery img {
max-width: 100%;
padding: 0.33em;
}
.post-gallery div:nth-child(2) {
width: 100%;
}
}
@media only screen and (max-width: 768px) {
.wrapper-columns .post {
width: inherit;
}
}
/* ==== END OF SOCIAL MEDIA POSTS ==== */
/* ===============
ACTION GRID
=============== */
.expand-actions-arrow {
height: 0.8em;
filter: contrast(0.85);
rotate: 180deg;
transition: ease-in-out 0.2s all;
}
.expand-actions-arrow-up {
rotate: 0deg;
}
.expand-actions-arrow:hover {
cursor: pointer;
}
@keyframes slide-in {
0% {
margin-top: -10px;
opacity: 0;
}
100% {
margin-top: 0px;
opacity: 1;
}
}
@keyframes slide-out {
0% {
margin-top: 0px;
opacity: 1;
}
100% {
margin-top: -10px;
opacity: 0;
}
}
.show-actions {
display: block;
animation: slide-in 0.3s linear 0s;
}
.hide-actions {
animation: slide-out 0.3s linear 0s;
opacity: 0;
margin-top: -10px;
}
/* ==== END OF ACTION GRID ==== */