-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (113 loc) · 2.22 KB
/
style.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
* {
box-sizing: border-box;
}
.envelop {
overflow-y: visible;
min-height: 100vh;
}
body {
overflow-x: hidden;
margin: 0;
max-width: 1000px;
margin: auto;
-webkit-user-drag: none;
user-drag: none;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
font-family: Arial, Helvetica, sans-serif;
}
.header {
width: 100%;
}
.addbutton {
z-index: 2;
position: absolute;
height: 100px;
width: 100px;
top: calc(30% - 50px);
left: calc(50% - 50px);
text-align: center;
font-size: 100px;
line-height: 100px;
overflow: hidden;
border-radius: 20%;
background-image: url("./images/loadingcats.gif");
background-size: cover;
background-position: center;
border: 0px solid white;
transition: border-bottom-width 0.2s ease-in, transform 0.2s ease-in, background 0.05s, box-shadow 0.2s ease-in;
}
.addbutton:hover {
border-bottom-width: 2px;
transform: translate(0px, -5px);
box-shadow: 0px 11.5px 11.5px hsla(0, 0%, 0%, 0.32);
}
.addbutton:active {
transition: transform 0.05s ease-in;
transform: translate(0);
box-shadow: 0px 0px 0px transparent;
}
.addbuttonborder {
z-index: 0;
background: blue;
background-clip: padding-box;
width: calc(100% + 10px);
height: calc(100% + 10px);
padding: 10px;
}
.cathouse {
position: relative;
width: 100%;
height: min(750px, 80vh);
background-color: pink;
}
#catbox {
position: relative;
width: 100%;
height: min(750px, 80vh);
background-color: hsl(0, 0%, 89%);
margin: auto;
padding: 10px;
border-radius: 10px;
}
.gattospace {
z-index: 1;
position: absolute;
width: 240px;
}
.gatto {
width: 100%;
height: 100%;
transform-origin: center center;
position: relative;
transition: 0.2s ease-out;
border-radius: 5px;
}
.gatto:hover {
transform: scale(1.1);
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
z-index: 2;
}
.gatto:active {
transform: scale(0.9);
}
#preloader {
position: fixed;
height: 0px;
width: 0px;
bottom: 0;
right: 0;
overflow: hidden;
}
.padded {
padding-left: 25px;
padding-right: 25px;
}
@media only screen and (max-width: 1000px) {
.envelope {
overflow-y: visible;
min-height: 100vh;
overflow-x: hidden;
}
}/*# sourceMappingURL=style.css.map */