-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
96 lines (83 loc) · 1.59 KB
/
stylesheet.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
.contact, .contact_mobile {
margin-top: 2%;
right: 5%;
position: absolute;
opacity: 1;
padding: 1%;
animation: annoyinganimation 10s;
animation-fill-mode: forwards;
max-width: 100%;
font-size: 3vw;
}
.contact_mobile {
padding: 3%;
background: rgb(238,174,202);
}
@media (max-width:962px) {
.contact {
display: none;
}
}
@media (min-width:962px) {
.contact_mobile {
display: none;
}
}
@keyframes annoyinganimation {
from {
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}
to {
box-shadow: 10px 10px 8px 10px rgba(0, 0, 0, 0.2);
}
}
.section {
padding-top: 5%;
padding-left: 5%;
padding-right: 5%;
animation: annoyinganimation 10s;
animation-fill-mode: forwards;
}
body {
padding: 2rem;
max-width: 38rem;
margin: auto;
font-family: Consolas;
font-size: 1.4em;
text-align: center;
background: rgb(238,174,202);
background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
}
img {
max-width: 100%;
outline: 0px solid darkgray;
}
.paperstack {
background-color: #fff;
position: relative;
max-width: 100%;
}
.paperstack,
.paperstack::before,
.paperstack::after {
box-shadow: 1px 1px 1px rgba(0,0,0,0.15);
max-width: 100%;
}
.paperstack::before,
.paperstack::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: #eee;
}
.paperstack::before {
left: 3px;
top: 3px;
z-index: -1;
}
.paperstack::after {
left: 6px;
top: 6px;
z-index: -2;
}