-
Notifications
You must be signed in to change notification settings - Fork 2
/
list.css
112 lines (97 loc) · 1.65 KB
/
list.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
@import "preset.css";
@import "palette.css";
@import "clayto.css";
html, body {
width: 100%;
height: 100%;
}
body {
background: var(--clh-black);
color: var(--clh-white);
opacity: 0;
transition: opacity ease-out 1s;
}
/* my body is ready */
body.ready {
opacity: 1;
}
a {
/*color: var(--clh-orange-light);*/
color: rgb(153, 204, 255);
cursor: pointer;
}
a:visited {
color: rgb(153, 204, 255);
}
.beside {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
#arcade-list-container {
margin: 42px;
display: grid;
grid-template-columns: 1fr 1fr 1fr; /*repeat(auto-fill,minmax(720px,1fr));*/
/*grid-auto-rows: auto;*/
grid-gap: 27px;
align-items: start;
}
.game-wrapper {
height: 100%;
}
img {
width: 100%;
}
.msg {
}
.msg h1 {
margin-bottom: 2px;
padding-bottom: 1px;
}
.pbp-article-thumbnail {
transition: transform ease-out 180ms;
z-index: 100;
position: relative;
}
.pbp-article-thumbnail:hover {
transform: scale(1.06);
z-index: 1000;
}
.msg {
font-size: 1.3rem;
height: 100%;
color: #c8c8c8;
}
.msg h1 {
color: white;
}
pfe-cta {
font-size: 1.6em;
}
pfe-icon.place1 {
--pfe-icon--Color: gold;
}
pfe-icon.place2 {
--pfe-icon--Color: silver;
}
pfe-icon.place3 {
--pfe-icon--Color: brown;
}
body {
--pfe-theme--color--ui-accent:#b500c8;
--pfe-theme--color--ui-accent--hover:#d059dd;
}
pfe-card {
box-shadow: 0px 6px 10px 10px rgba(0,0,0,0.2);
--pfe-card--Border: 2px dotted purple;
}
.banner {
grid-column: 1 / -1;
margin: 0px 0;
text-align: center;
}
.banner h2 {
padding: 12px 16px;
display: inline-block;
}