File tree 4 files changed +64
-0
lines changed
4 files changed +64
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "workbench.colorCustomizations" : {
3
+ "activityBar.background" : " #61030D" ,
4
+ "titleBar.activeBackground" : " #880412" ,
5
+ "titleBar.activeForeground" : " #FFFBFC"
6
+ }
7
+ }
Original file line number Diff line number Diff line change
1
+ /* Main styles*/
2
+ body {
3
+ margin : 0 ;
4
+ padding : 0 ;
5
+ align-content : center;
6
+ background-color : rgb (209 , 142 , 59 );
7
+ }
8
+
9
+ /* Body wraper*/
10
+ .Body_wapper {
11
+ display : grid;
12
+ max-width : 400px ;
13
+ max-height : 400px ;
14
+ justify-content : center;
15
+ }
16
+
17
+ /* Main sections*/
18
+ .section_1 , .section_2 , .section_3 {
19
+ max-width : 400px ;
20
+ max-height : 400px ;
21
+ justify-content : center;
22
+ display : grid;
23
+ grid-template-columns : 20px , 20px , 20px ;
24
+ height : 20px ;
25
+ width : 200px ;
26
+ padding : 5px ;
27
+ border-style : solid;
28
+ border-width : 1px ;
29
+ border-radius : .5px ;
30
+ border-color : navy;
31
+ }
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
+ < link rel ="stylesheet " href ="css/maincss.css ">
7
+ < title > Abstract Cats 2021- Graphic, Sound And Software Design!</ title >
8
+ </ head >
9
+ < body >
10
+ <!--Body Wrapper-->
11
+ < wrapper class ="Body_wapper ">
12
+ < header id ="header "> HELLO WORLD!</ header >
13
+ <!--Navigation-->
14
+ < br >
15
+ < div id ="top_navbar "> TOP_NAV</ div >
16
+ < br >
17
+ < div class ="section_1 "> Section_1</ div >
18
+ < br >
19
+ < div class ="section_2 "> Section_2</ div >
20
+ < br >
21
+ < div class ="section_3 "> Section_3</ div >
22
+ </ wrapper >
23
+ < script src ="js/mainjs.js "> </ script >
24
+ </ body >
25
+ </ html >
Original file line number Diff line number Diff line change
1
+ //Main JS
You can’t perform that action at this time.
0 commit comments