forked from dbradley771/DiscordInvite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (66 loc) · 1.34 KB
/
style.css
File metadata and controls
77 lines (66 loc) · 1.34 KB
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
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Courgette', serif;
}
#envelope-front-holder, #envelope-back-holder, #letter-holder {
position: fixed;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: stretch;
align-content: flex-end;
pointer-events: none;
min-width: 40rem;
}
#envelope-front-holder, #envelope-back-holder {
overflow-y: scroll;
}
#envelope-front-holder>*, #envelope-back-holder>*, #letter-holder>* {
flex-grow: 1;
}
#envelope-back {
pointer-events: none;
background: url('top.png') bottom no-repeat;
z-index: 100;
}
#letter-box {
overflow: hidden;
margin-bottom: 1.5rem;
z-index: 200;
}
#letter {
height: 100%;
overflow-y: scroll;
pointer-events: auto;
}
#letter-content {
background: #fdf9f1;
margin: 60vh auto 40vh auto;
padding: 3rem 2rem;
max-width: 30rem;
min-width: 30rem;
font-size: 1.4em;
}
#link {
font-family: 'Roboto', sans-serif;
}
#envelope-front {
pointer-events: none;
background: url('bottom.png') bottom no-repeat;
z-index: 300;
}
#wood {
width: 100%;
height: 100%;
position: fixed;
background: url('wood.jpg') center no-repeat;
background-size: cover;
z-index: -1;
}
::-webkit-scrollbar {
width: 0;
}