Skip to content

Commit

Permalink
Create ohg.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
staFF6773 authored Jul 4, 2024
1 parent 27a028c commit 0a95500
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions example/ohg.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@

$primary-color: #3498db;
$secondary-color: #2ecc71;
$font-stack: 'Helvetica Neue', sans-serif;
$base-padding: 16px;


@mixin flex-center {
display: flex;
justify-content: center;
align-items: center;
}


* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: $font-stack;
line-height: 1.6;
padding: $base-padding;
background-color: #f4f4f4;
}

header {
background-color: $primary-color;
color: white;
padding: $base-padding;
text-align: center;
@include flex-center;
}

main {
background-color: white;
padding: $base-padding;
margin: 20px auto;
max-width: 800px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section {
margin-bottom: $base-padding;
}

footer {
background-color: $secondary-color;
color: white;
text-align: center;
padding: $base-padding;
@include flex-center;
position: fixed;
bottom: 0;
width: 100%;
}

0 comments on commit 0a95500

Please sign in to comment.