-
Notifications
You must be signed in to change notification settings - Fork 2
/
default.css
116 lines (98 loc) · 2.06 KB
/
default.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
background-color: #1d1b26;
font-family: "Inter UI", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
margin: 0;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #EEEEEE;
text-align: left;
}
.showcase {
font-family: 'Noto Sans', sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 95vh;
}
.showcase img {
height: 35vh;
-webkit-filter: drop-shadow(5px 5px 5px rgb(17, 24, 20));
filter: drop-shadow(5px 5px 5px rgb(17, 24, 20));
animation: float 6s ease-in-out infinite;
}
.showcase h1 {
font-weight: 900;
font-size: 60pt;
margin: 20px 20px 0;
}
.showcase h2 {
font-size: 30pt;
margin: 0;
font-weight: 400;
}
.showcase p {
font-size: 17pt;
text-align: center;
}
.showcase div {
margin-top: 30px;
}
.btn {
border: 1px solid white;
padding: 12px 15px;
color: white;
text-decoration: none;
border-radius: 3px;
margin-top: 15px;
text-align: center;
}
.btn.fill {
background-color: white;
color: #1d1b26;
}
.showcase .btn:not(.fill)
{
margin-left: 10px;
}
@keyframes float {
0% {
-webkit-transform: translatey(0px);
transform: translatey(0px);
}
50% {
-webkit-transform: translatey(-20px);
transform: translatey(-20px);
}
100% {
-webkit-transform: translatey(0px);
transform: translatey(0px);
}
}
@media (max-width: 991px) {
.showcase {
height: 100vh;
}
.showcase img {
height: initial;
width: 60vw;
/* margin-bottom: 50px; */
}
.showcase h1 {
font-size: 40pt;
}
.showcase p {
font-size: 12pt;
padding: 0 20px;
}
.showcase div {
display: flex;
margin-top: initial;
flex-direction: column;
}
.showcase .btn:not(.fill)
{
margin-left: initial;
}
}