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