-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.css
101 lines (85 loc) · 1.97 KB
/
interface.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
97
98
99
100
101
@import url('https://fonts.googleapis.com/css2?family=Tourney:wght@100;200&display=swap');
.parrallax{
min-height: 1500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
z-index: 1;
}
.content{
font-family: 'Tourney', cursive;
font-weight: 100;
margin: 70% 10%;
font-size: 140px;
font-kerning: 160px;
color: white;
-webkit-text-stroke: 10px rgba(255, 244, 254, 0.15);
text-align:center;
top: -20%;
z-index: -1;
}
img{
z-index: -2;
width: 600px;
height: auto;
left: 300px;
}
#blob canvas {
width: 1000px;
margin-top: -5%;
position: fixed;
top: 20vh;
left: 15vw;
}
@media (max-width: 1200px) {
#blob canvas {
margin-top: -10%;
width: 1000px;
}
}
@media (max-width: 600px) {
#blob canvas {
width: 800px;
}
}
/* html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
} */
/* * {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
*:before, *:after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
} */
/* html,
body {
overflow: hidden;
} */
body {
/* min-height: 100vh; */
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
font-family: 'Source Sans Pro', Arial;
background-image: linear-gradient(to top, #3f51b1 0%, #5a55ae 13%, #7b5fac 25%, #8f6aae 38%, #a86aa4 50%, #cc6b8e 62%, #f18271 75%, #f3a469 87%, #f7c978 100%);
}
#blob {
position: -webkit-sticky; /* Safari */
position: sticky;
top: 25%;
}