Skip to content

Commit

Permalink
buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksasj committed Aug 1, 2024
1 parent 3312580 commit 871d151
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 16 deletions.
41 changes: 33 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,27 @@
<img src="assets/Untitled-1.png">
</center>
</div>

<div class="navigation">
<center>
<a class="navigation_link" href="">
<div class="navigation_button" style="background-color: hotpink">Home</div>
</a>
<a class="navigation_link" href="">
<div class="navigation_button" style="background-color: #ffe100">Quiz</div>
</a>
<a class="navigation_link" href="">
<div class="navigation_button" style="background-color: #35c4f8">Cards</div>
</a>
<a class="navigation_link" href="">
<div class="navigation_button" style="background-color: #6aff8f">Typing game</div>
</a>
</center>
</div>
</div>
</div>

<div class="decorative_bar">
<center>
<img src="assets/starsdivider3.gif">
<img src="assets/starsdivider3.gif">
</center>
</div>
<div class="decorative_bar"></div>

<div class="window">
<div class="window_title">
Expand All @@ -53,14 +65,27 @@
<div class="window_body">
<div class="content_container_wrapper">
<div class="content_container_half">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
<h1 class="content_header">Links</h2>
<p>There is some links to other sites</p>
<ul>
<li><a href="https://maksasj.github.io/miku_gnoming/">miku_gnoming</a></li>
<li><a href="https://github.com/Maksasj">github</a></li>
<li><a href="https://www.youtube.com/channel/UCi4v_ovJpOAf_7Vkq0azh7g">youtube</a></li>
</ul>

<img src="assets/0183-pastelpinkwings.gif">
</div>

<div class="content_container_half">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

</div>
</div>

<center>
<img src="assets/starsdivider3.gif">
<img src="assets/starsdivider3.gif">
</center>

<div class="content_container_full">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
Expand Down
35 changes: 27 additions & 8 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
* {
font-family: "MS Pゴシック", serif;
font-family: ms gothic, courier;

letter-spacing: 1.5px;

image-rendering: auto;
Expand All @@ -25,22 +27,31 @@ body {

.navigation {
margin-top: 5px;
margin-bottom: 5px;
}

.navigation_button {
display: inline-block;

margin-top: 10px;
text-align: center;

width: 150px;
color: white;
height: 30px;

color: white;
font-weight: bolder;
background-color: deeppink;

padding-top: 2px;
padding-bottom: 2px;

border-width: 4px;
border-radius: 5px;
border-style: ridge;
border-color: aqua;
padding-top: 10px;
}

.navigation_button:hover {
box-shadow: 2px 2px 1px 1px white;
}

.navigation_link {
text-decoration: none;
}

.window {
Expand Down Expand Up @@ -91,6 +102,7 @@ body {
width: 350px;
background-color: white;

border-width: 1px;
border-style: solid;
border-color: rgb(210, 106, 255);
border-radius: 5px;
Expand All @@ -103,13 +115,20 @@ body {
margin: 10px;
background-color: white;

border-width: 1px;
border-style: solid;
border-color: rgb(210, 106, 255);
border-radius: 5px;

padding: 10px;
}

.content_header {
font-size: 20px;
padding-top: 0px;
margin: 0;
}

.footer {
margin-top: 10px;

Expand Down

0 comments on commit 871d151

Please sign in to comment.