-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
51 lines (51 loc) · 998 Bytes
/
index.css
File metadata and controls
51 lines (51 loc) · 998 Bytes
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
body {
background-color: #0d1117;
color: white;
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
margin: 0;
}
img {
user-drag: none;
-webkit-user-drag: none;
}
a {
color: aqua;
}
.applist {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.appimg {
border: 2px solid white;
box-shadow: 0 0 40px 5px white;
border-radius: 10px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
width: 320px;
height: 180px;
margin: 50px;
transition: transform ease-out 0.2s;
}
.appimg, .linkimg {
&:hover {
transform: scale(110%);
}
&:active {
transform: scale(120%);
}
}
.linkimg {
border: 2px solid white;
box-shadow: 0 0 20px 5px white;
border-radius: 10px;
cursor: pointer;
width: 64px;
height: 64px;
display: inline-block;
transition: transform ease-out 0.2s;
margin: 20px;
}