Skip to content

Commit

Permalink
Create styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
ComputerTech312 authored Feb 14, 2024
1 parent a10a900 commit c1b282a
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

.header {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}

.container {
width: 80%;
margin: auto;
overflow: hidden;
}

.main {
float: left;
width: 70%;
padding: 30px 0;
}

.sidebar {
float: right;
width: 30%;
padding: 30px 0;
background-color: #333;
color: #fff;
}

0 comments on commit c1b282a

Please sign in to comment.