-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
47 lines (42 loc) · 954 Bytes
/
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
html, body {
height: 100%;
}
body {
cursor: url(https://github.com/FASUZO/fasuzo.github.io/blob/master/cursor.png) 32 32, move;
background: #eeeeee;
overflow: hidden;
}
*, *:before, *:after {
box-sizing: border-box;
}
.container {
position: relative;
top: 50%;
left: 50%;
width: 320px;
height: 400px;
opacity: 0;
visibility: hidden;
transform: translate(-50%, -50%);
cursor: url(https://github.com/FASUZO/fasuzo.github.io/blob/master/cursor.png), move;
cursor: url(https://github.com/FASUZO/fasuzo.github.io/blob/master/cursor.png) 32 32, move;
}
.list-item {
position: absolute;
top: 0;
left: 0;
height: 90px;
width: 100%;
}
.item-content {
height: 100%;
border: 0px solid rgba(123, 123, 123, 0.498039);
border-radius: 4px;
color: #999999;
line-height: 90px;
padding-left: 32px;
font-size: 24px;
font-weight: 400;
background-color: white;
box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
}