File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
Challenges/Day 01 - JavaScript Drum Kit Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
- @import url ('https://fonts.googleapis.com/css?family=Montserrat&display=swap' );
2
-
3
1
html {
4
2
font-size : 10px ;
5
3
background : # 2980b9 ; /* fallback for old browsers */
6
4
background : linear-gradient (300deg , deepskyblue, darkviolet, blue);
7
5
background-size : 180% 180% ;
8
- animation : gradient-animation 18 s ease infinite;
6
+ animation : gradient-animation 15 s ease infinite;
9
7
}
10
8
9
+ * {
10
+ padding : 0 ;
11
+ margin : 0 ;
12
+ box-sizing : border-box;
13
+ }
11
14
body ,
12
15
html {
13
- margin : 0 ;
14
- padding : 0 ;
15
- font-family : 'Montserrat' , sans-serif;
16
16
height : 100% ;
17
17
}
18
+ body {
19
+ font-family : "Raleway" , sans-serif;
20
+ text-rendering : optimizeLegibility;
21
+ -webkit-font-smoothing : antialiased;
22
+ -moz-osx-font-smoothing : grayscale;
23
+ }
18
24
19
25
.container {
20
26
display : grid;
You can’t perform that action at this time.
0 commit comments