Skip to content

Commit

Permalink
Create light-mode.css
Browse files Browse the repository at this point in the history
  • Loading branch information
lunekiska authored Feb 17, 2024
1 parent 18a0568 commit 65936e0
Showing 1 changed file with 113 additions and 0 deletions.
113 changes: 113 additions & 0 deletions css/light-mode.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
* { border: 0; padding: 0; margin: 0; background-color: #ffffff; color: #262626; line-height: 140%; }
html, body, #container { width: 100%; height: 100%; }
body { font-size: 16px; font-family: 'LatoLatinWeb'; }
hr { border-top: 1px solid #c4c0bc; width: 40px; margin: 0.6em 0; }
a:hover { color: #e2c3fa; }
h1 { font-size: 40px; font-family: 'LatoLatinWebSemibold'; }
h2 { font-size: 24px; }
li { margin-left: 2em; }
li > ul { margin-bottom: 0.5em; }
li > i { color: #262626; }
p.small { font-size: 10px; color: #504e4c; }
p.rate2 a { color: #262626; }
p.rate2 a:hover { color: #e2c3fa; }
#container { display: flex; justify-content: center; align-items: center; flex-direction: column; margin-top: 15px; margin-right: 0; margin-bottom: 15px; margin-left: 0; }
#container > div { text-align: center; margin: 0.6em 0; }
#header-menu { display: flex; justify-content: center; align-items: center; background-color: #e8e8e8; }

#footer {
font-size: 12px;
text-align: center;
background-color: #e8e8e8;
color: #e2c3fa;
}

#footer p {color: #e2c3fa;}

ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #ffffff;
}

.dropbtn {
display: inline-block;
color: #967bb6;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

.dropdown:hover {
background-color: #262626;
}

.dropdown {
position: relative;
display: inline-block;
align-self: left;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #e8e8e8;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}

.dropdown-content a {
color: #967bb6;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}

.dropdown-content a:hover { background-color: #181818; }

.dropdown:hover .dropdown-content { display: block; }

.wrapper-main {
width: 1000px
padding: 100px 0;
margin: 0 auto;
}

@media (max-width:600px) {

.wrapper-main {
width: 100%
}
}

@media (min-width:601px) {

.wrapper-main {
width: 100%
}
}

@media (min-width:768px) {

.wrapper-main {
width: 100%
}
}

@media (min-width:992px) {

.wrapper-main {
width: 100%
}
}

@media (min-width:1200px) {

.wrapper-main {
width: 100%
}
}

0 comments on commit 65936e0

Please sign in to comment.