Skip to content

Commit 8a77584

Browse files
TSGTSG
TSG
authored and
TSG
committed
11.19.2020
Abstract Cats New site for 2021
0 parents  commit 8a77584

File tree

4 files changed

+64
-0
lines changed

4 files changed

+64
-0
lines changed

.vscode/settings.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.background": "#61030D",
4+
"titleBar.activeBackground": "#880412",
5+
"titleBar.activeForeground": "#FFFBFC"
6+
}
7+
}

css/maincss.css

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
}

index.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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>

js/mainjs.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//Main JS

0 commit comments

Comments
 (0)