-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (108 loc) · 1.85 KB
/
style.css
File metadata and controls
128 lines (108 loc) · 1.85 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
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
126
127
128
:root {
--sky: rgb(229, 245, 248);
--wave1: blue;
--wave2: purple;
}
body {
background: var(--sky);;
justify-content: center;
display: flex;
flex-direction: column;
align-items: center;
height:100vh;
margin:0;
align-content: stretch;
justify-content: flex-start;
}
a {
font-weight: 600;
color: #0089ff;
}
p {
font-family: 'Delius';
}
/* Body */
.header {
margin-top: 100px;
}
.card {
background-color: #ffffffbf;;
border-radius: 48px;
box-shadow:
0 2.8px 2.2px rgba(0, 0, 0, 0.034),
0 6.7px 5.3px rgba(0, 0, 0, 0.048),
0 12.5px 10px rgba(0, 0, 0, 0.06),
0 22.3px 17.9px rgba(0, 0, 0, 0.072),
0 41.8px 33.4px rgba(0, 0, 0, 0.086),
0 100px 80px rgba(0, 0, 0, 0.12);
max-width: 50%;
padding:2em;
}
/* Animation Stuff */
@keyframes pulse {
from {
opacity: 1;
}
to {
opacity: 0.5;
}
}
#wave_container {
position: absolute;
left: 0;
width:100%;
height:100%;
display: flex;
flex-direction: column;
align-items: center;
}
.wave {
position: absolute;
width: 100%;
height: 100%;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: -3!important;
}
.wave+.wave {
z-index: 0;
}
#fishbitmap {
display: none;
}
svg.fish {
width: 300px;
height: 300px;
z-index: 1;
}
.fish_container {
position:absolute;
top:20%;
width:100%;
z-index:-2;
}
footer.footer-left {
z-index:-1;
position: absolute;
bottom: 0;
left:12px;
color: white;
font-size:0.9em;
font-weight:100;
}
footer.footer-right {
z-index:-1;
position: absolute;
bottom: 0;
display: flex;
align-items: center;
flex-direction: row;
justify-content: flex-end;
width: 100%;
}
.footer_logo {
height:60px;
margin:10px;
}