Skip to content

Commit

Permalink
add css
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis-LJ committed May 31, 2024
1 parent cd823d2 commit c5f4624
Show file tree
Hide file tree
Showing 9 changed files with 828 additions and 12 deletions.
126 changes: 126 additions & 0 deletions CycloRoute/Style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
/* || General setup */

html, body {
margin: 0;
padding: 0;
}

html {
font-size: 10px;
background-color: #a9a9a9;
}

body {
width: 70%;
margin: 0 auto;
}

/* || typography */

h1, h2, h3 {
font-family: 'Segoe UI', cursive;
color: #2a2a2a;
}

p, input, li {
font-family: 'Segoe UI', sans-serif;
color: #2a2a2a;
}

h1 {
font-size: 4rem;
text-align: center;
text-shadow: 2px 2px 10px ;
}

h2 {
font-size: 3rem;
text-align: center;
}

h3 {
font-size: 2.2rem;
}

p, li {
font-size: 1.6rem;
line-height: 1.5;
}

/* || header layout */

nav, article, aside, footer {
padding: 1%;
}

nav {
height: 50px;
display: flex;
margin-bottom: 10px;
}

nav ul {
padding: 0;
list-style-type: none;
flex: 2;
display: flex;
}

nav li {
display: inline;
text-align: center;
flex: 1;
}

nav a {
display: inline-block;
font-size: 2rem;
text-transform: uppercase;
text-decoration: none;
}

nav form {
flex: 1;
display: flex;
align-items: center;
height: 100%;
padding: 0 2em;
}

input {
font-size: 1.6rem;
height: 32px;
}

input[type="search"] {
flex: 3;
}

input[type="submit"] {
flex: 1;
margin-left: 1rem;
border: 0;
}

/* || main layout */

main {
display: flex;
}

article {
flex: 4;
}

aside {
flex: 1;
margin-left: 10px;
}

aside li {
padding-bottom: 10px;
}

footer {
margin-top: 10px;
}
126 changes: 126 additions & 0 deletions Enduro/Style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
/* || General setup */

html, body {
margin: 0;
padding: 0;
}

html {
font-size: 10px;
background-color: #a9a9a9;
}

body {
width: 70%;
margin: 0 auto;
}

/* || typography */

h1, h2, h3 {
font-family: 'Segoe UI', cursive;
color: #2a2a2a;
}

p, input, li {
font-family: 'Segoe UI', sans-serif;
color: #2a2a2a;
}

h1 {
font-size: 4rem;
text-align: center;
text-shadow: 2px 2px 10px ;
}

h2 {
font-size: 3rem;
text-align: center;
}

h3 {
font-size: 2.2rem;
}

p, li {
font-size: 1.6rem;
line-height: 1.5;
}

/* || header layout */

nav, article, aside, footer {
padding: 1%;
}

nav {
height: 50px;
display: flex;
margin-bottom: 10px;
}

nav ul {
padding: 0;
list-style-type: none;
flex: 2;
display: flex;
}

nav li {
display: inline;
text-align: center;
flex: 1;
}

nav a {
display: inline-block;
font-size: 2rem;
text-transform: uppercase;
text-decoration: none;
}

nav form {
flex: 1;
display: flex;
align-items: center;
height: 100%;
padding: 0 2em;
}

input {
font-size: 1.6rem;
height: 32px;
}

input[type="search"] {
flex: 3;
}

input[type="submit"] {
flex: 1;
margin-left: 1rem;
border: 0;
}

/* || main layout */

main {
display: flex;
}

article {
flex: 4;
}

aside {
flex: 1;
margin-left: 10px;
}

aside li {
padding-bottom: 10px;
}

footer {
margin-top: 10px;
}
126 changes: 126 additions & 0 deletions Hiking/Style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
/* || General setup */

html, body {
margin: 0;
padding: 0;
}

html {
font-size: 10px;
background-color: #a9a9a9;
}

body {
width: 70%;
margin: 0 auto;
}

/* || typography */

h1, h2, h3 {
font-family: 'Segoe UI', cursive;
color: #2a2a2a;
}

p, input, li {
font-family: 'Segoe UI', sans-serif;
color: #2a2a2a;
}

h1 {
font-size: 4rem;
text-align: center;
text-shadow: 2px 2px 10px ;
}

h2 {
font-size: 3rem;
text-align: center;
}

h3 {
font-size: 2.2rem;
}

p, li {
font-size: 1.6rem;
line-height: 1.5;
}

/* || header layout */

nav, article, aside, footer {
padding: 1%;
}

nav {
height: 50px;
display: flex;
margin-bottom: 10px;
}

nav ul {
padding: 0;
list-style-type: none;
flex: 2;
display: flex;
}

nav li {
display: inline;
text-align: center;
flex: 1;
}

nav a {
display: inline-block;
font-size: 2rem;
text-transform: uppercase;
text-decoration: none;
}

nav form {
flex: 1;
display: flex;
align-items: center;
height: 100%;
padding: 0 2em;
}

input {
font-size: 1.6rem;
height: 32px;
}

input[type="search"] {
flex: 3;
}

input[type="submit"] {
flex: 1;
margin-left: 1rem;
border: 0;
}

/* || main layout */

main {
display: flex;
}

article {
flex: 4;
}

aside {
flex: 1;
margin-left: 10px;
}

aside li {
padding-bottom: 10px;
}

footer {
margin-top: 10px;
}
Loading

0 comments on commit c5f4624

Please sign in to comment.