Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisaVallbracht committed Oct 24, 2024
2 parents 2c0d5cd + 8239bd2 commit 40ce7ff
Show file tree
Hide file tree
Showing 58 changed files with 1,351 additions and 1,165 deletions.
31 changes: 20 additions & 11 deletions experiments/3melie/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,49 +22,57 @@
}

section{
opacity: 1;
opacity: .2;
padding: 20px;
transition: all 1s ease;
width: 70%;
margin: auto;
border-radius: 10%;
}

section:hover {
opacity: 1;
background-color: rgb(247, 247, 212);
transform: scale(1.05);
color: rgb(80, 70, 55);

border-radius: 0%;
border-style:double;
border-width: thick;
transition-duration: 0.5s;
}

h1{
font-variant: small-caps;
color: rgb(255, 213, 77);
text-align: center;
}

h2{
font-variant: small-caps;
}


img{
max-width: 100%;
height: auto;
opacity: .5;
}

img:hover{
opacity: 1;
}

a:link{
:link{
color: rgb(80, 70, 55);
font-variant: small-caps;
font-size: larger;
}

a:visited{
:visited{
color: rgb(80, 70, 55);
}

a:link:hover{
:link:hover{
opacity: 1;
color: rgb(225, 172, 0);
}

a:visited:hover{
:visited:hover{
opacity: 0;
color:rgb(247, 247, 212)
}
Expand All @@ -74,6 +82,7 @@
<body>
<main id="content" class="main-content ">
<article class="main-page-content" lang="en-US">
<h1><u>The box model</u></h1>
<section>
<header>
<h2><u>The box model</u></h2>
Expand Down
1 change: 1 addition & 0 deletions experiments/DAI YU SYUAN/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<style>
p{
color:aqua;
opacity: 5;
}

</style>
Expand Down
4 changes: 2 additions & 2 deletions experiments/kaheller/1_basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The box model - Interactive Information</title>
<title>The box model </p>Interactive Information</title>
<!-- Source: https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/The_box_model -->

<style>
Expand Down Expand Up @@ -53,7 +53,7 @@
<main id="content" class="main-content ">
<article class="main-page-content" lang="en-US">
<header>
<h1>The box model</h1>
<h1>The box model - <p>Explained</p></h1>
</header>
<div class="section-content">
<p>
Expand Down
2,193 changes: 1,111 additions & 1,082 deletions experiments/lucazell/1_basics.html

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
77 changes: 77 additions & 0 deletions experiments/lucazell/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
@font-face {
font-family: 'Roobert';
src: url('http://127.0.0.1:5500/assets/fonts/RoobertTRIAL-Regular.ttf'); /* imported a beautiful font */
}

body {
font-family: Roobert, sans-serif;
background-color: #E2EDEC;
}

div{
display: block;
unicode-bidi: isolate;
}

.main_section{
width: 100%;
background-color: rgba(239, 242, 255, 0);
padding: 100px 1.88em 50px;
}

.container{
width: 100%;
max-width: 100em;
margin-left: auto;
margin-right: auto;
}

.main_grid{
width: 100%;
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: 1fr;
grid-column-gap: 16px;
grid-row-gap: 0px;
}

.sticky_menu_wrapper{
z-index: 0;
height: 400px;
flex-direction: column;
margin-bottom: 0;
padding: 0 24px 0 0;
display: flex;
position: -webkit-sticky;
position: sticky;
top: 182px;
overflow: scroll;
}

.sticky_menu_item{
color: #696969;
margin-bottom: 12px;
font-size: 15px;
font-weight: 400;
line-height: 1.6;
text-decoration: none;
transition: color .2s;
}

a{
color: #696969;
background-color: transparent;
}

a:hover{
color: #0CAEB5; /* hover effect for the navigation */
}

.content_wrapper{
background-color: #fff;
border: 1px solid rgba(105, 105, 105, .1);
border-radius: 20px;
margin-left: 10px;
padding: 24px 40px;
overflow: visible;
}
Loading

0 comments on commit 40ce7ff

Please sign in to comment.