-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.css
56 lines (42 loc) · 1 KB
/
template.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
/* BACKGROUND */
body {
background-image: url("https://img.itch.zone/aW1nLzEzNjA3NTMzLnBuZw==/original/rN4Sfg.png");
background-attachment: fixed;
background-position: top center;
background-size: cover;
}
.wrapper {
background-color: transparent;
}
/* CURSOR */
* {
cursor: url("https://img.itch.zone/aW1nLzEzNjA3NTk0LnBuZw==/original/55HMEs.png"), auto;
}
/* SCREENSHOTS BORDERS */
.screenshot {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
border-color: #ffffff;
border-width: 4px;
border-style: solid;
}
.screenshot:hover {
transform: scale(1.02, 1.02);
border-color: #180A24;
}
.view_game_page .screenshot_list {
margin-right: 0px;
float:right;
}
/* BUTTONS */
.iframe_placeholder, #game_drop {
border: 4px solid;
border-color: #00000;
}
.iframe_placeholder .button:hover, #game_drop .button:hover {
transform: scale(1.1, 1.1);
}
;