-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
168 lines (142 loc) · 3.16 KB
/
styles.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/* css styles */
/* Regular style */
@font-face {
font-family: 'JuliaMono';
src: url('/assets/webfonts/JuliaMono-Regular.woff2');
}
/* Regular Italic style */
@font-face {
font-family: 'JuliaMono';
font-style: italic;
src: url('/assets/webfonts/JuliaMono-RegularItalic.woff2');
}
/* Bold style */
@font-face {
font-family: 'JuliaMono';
font-weight: bold;
src: url('/assets/webfonts/JuliaMono-Bold.woff2');
}
/* Bold Italic style */
@font-face {
font-family: 'JuliaMono';
font-style: italic;
font-weight: bold;
src: url('/assets/webfonts/JuliaMono-BoldItalic.woff2');
}
/* Light style */
@font-face {
font-family: 'JuliaMono';
font-weight: 300;
src: url('/assets/webfonts/JuliaMono-Light.woff2');
}
/* Light Italic style */
@font-face {
font-family: 'JuliaMono';
font-style: italic;
font-weight: 300;
src: url('/assets/webfonts/JuliaMono-LightItalic.woff2');
}
/* Medium style */
@font-face {
font-family: 'JuliaMono';
font-weight: 500;
src: url('/assets/webfonts/JuliaMono-Medium.woff2');
}
/* Medium Italic style */
@font-face {
font-family: 'JuliaMono';
font-style: italic;
font-weight: 500;
src: url('/assets/webfonts/JuliaMono-MediumItalic.woff2');
}
/* SemiBold style */
@font-face {
font-family: 'JuliaMono';
font-weight: 600;
src: url('/assets/webfonts/JuliaMono-SemiBold.woff2');
}
/* SemiBold Italic style */
@font-face {
font-family: 'JuliaMono';
font-style: italic;
font-weight: 600;
src: url('/assets/webfonts/JuliaMono-SemiBoldItalic.woff2');
}
@font-face {
font-family: 'Literata';
/*a name to be used later*/
src: url('/assets/webfonts/Literata.woff2');
/*URL to font*/
}
@font-face {
font-family: 'Inter';
/*a name to be used later*/
src: url('/assets/webfonts/Inter-Variable.ttf');
/*URL to font*/
}
pre {
background-color: rgb(246, 248, 250);
border-radius: 8px;
}
.hero {
width: 100%;
/* height: 100vh; */
display: flex;
align-items: center;
justify-content: center;
background-size: 300% 300%;
background-image: linear-gradient(-45deg, #CB3C33, #9558B2 100%);
-webkit-animation: AnimateBG 40s ease infinite;
animation: AnimateBG 40s ease infinite;
color: azure;
padding: 10px 10px 20px 20px;
flex-wrap: wrap;
}
.hero-fullwidth {
width: 100%;
text-align: center;
font-size: x-large;
font-weight: 600;
}
.hero-grid {
display: flex;
align-items: center;
justify-content: center;
align-items: flex-start;
font-weight: 400;
}
@media (max-width: 800px) {
.hero-grid {
flex-direction: column;
}
}
.hero-child {
flex: 1;
}
@-webkit-keyframes AnimateBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes AnimateBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.swiffy-slider .top {
background-color: gainsboro;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}