mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
fix css?
This commit is contained in:
parent
f08446bfc5
commit
e257d645a6
33
index.html
33
index.html
@ -6,17 +6,22 @@
|
|||||||
<title>Bad website</title>
|
<title>Bad website</title>
|
||||||
<link rel="stylesheet" href="style.css" Type="text/css" media="all">
|
<link rel="stylesheet" href="style.css" Type="text/css" media="all">
|
||||||
<script src="index.js"></script>
|
<script src="index.js"></script>
|
||||||
<div id="grad">
|
<div id="app">
|
||||||
<img onclick="window.location.href='http://gg.gg/b0gamead2'" class="alignnone size-full wp-image-1303" class="floatRight" src="/files/img/qm5solke 2.png" alt="" width="318.75" height="468.75" id="hp"/></div>
|
<transition v-on:enter="enter" v-bind:css="false" appear>
|
||||||
<p>On this website i host games and other stuff.</p>
|
<div class="butter-cheese-eggs" v-show="true">
|
||||||
<h1 style="font-size:2vw">Contact:</h1>
|
<div v-for="(block, index) in grid" @click="select(index)">
|
||||||
<p>Discord: Boof V2#4806</p>
|
<block :figure.sync="block.figure" />
|
||||||
<p>Email: <a href="mailto:admin@boof.eu.org">admin@boof.eu.org</a></p>
|
</div>
|
||||||
<h1 style="font-size:2vw">Links</h1>
|
</div>
|
||||||
<p><a href="https://status.boof.eu.org">Status</a></p>
|
<img onclick="window.location.href='http://gg.gg/b0gamead2'" class="alignnone size-full wp-image-1303" class="floatRight" src="/files/img/qm5solke 2.png" alt="" width="318.75" height="468.75" id="hp"/></div>
|
||||||
<p><a href="http://boofdev125.ezyro.com/">File upload/host</a></p>
|
<p>On this website i host games and other stuff.</p>
|
||||||
<p><a href="http://boofdev126.ezyro.com/">Pastebin</a></p>
|
<h1 style="font-size:2vw">Contact:</h1>
|
||||||
<p><a href="http://boofv2.c1.biz/">Donate</a></p>
|
<p>Discord: Boof V2#4806</p>
|
||||||
<p><a href="/Games/">Games</a></p>
|
<p>Email: <a href="mailto:admin@boof.eu.org">admin@boof.eu.org</a></p>
|
||||||
<p><a href="/tools/">Tools</a></p>
|
<h1 style="font-size:2vw">Links</h1>
|
||||||
</div>
|
<p><a href="https://status.boof.eu.org">Status</a></p>
|
||||||
|
<p><a href="http://boofdev125.ezyro.com/">File upload/host</a></p>
|
||||||
|
<p><a href="http://boofdev126.ezyro.com/">Pastebin</a></p>
|
||||||
|
<p><a href="http://boofv2.c1.biz/">Donate</a></p>
|
||||||
|
<p><a href="/Games/">Games</a></p>
|
||||||
|
<p><a href="/tools/">Tools</a></p>
|
||||||
|
|||||||
49
style.css
49
style.css
@ -13,4 +13,53 @@
|
|||||||
#grad {
|
#grad {
|
||||||
height: 200px;
|
height: 200px;
|
||||||
background-image: linear-gradient(cyan, blue);
|
background-image: linear-gradient(cyan, blue);
|
||||||
|
}
|
||||||
|
|
||||||
|
@import url("https://fonts.googleapis.com/css?family=Permanent+Marker");
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
#app {
|
||||||
|
display: flex;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
background-image: linear-gradient(blue, cyan);
|
||||||
|
}
|
||||||
|
|
||||||
|
.butter-cheese-eggs {
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
width: 300px;
|
||||||
|
height: 300px;
|
||||||
|
}
|
||||||
|
.butter-cheese-eggs > div {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
}
|
||||||
|
.butter-cheese-eggs > div .block {
|
||||||
|
cursor: pointer;
|
||||||
|
display: table-cell;
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
font: bold 50px/0 "Comic Sans MS", sans-serif;
|
||||||
|
vertical-align: middle;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.butter-cheese-eggs > div:nth-child(1), .butter-cheese-eggs > div:nth-child(2), .butter-cheese-eggs > div:nth-child(3), .butter-cheese-eggs > div:nth-child(4), .butter-cheese-eggs > div:nth-child(5), .butter-cheese-eggs > div:nth-child(6) {
|
||||||
|
border-bottom: 3px solid #fff;
|
||||||
|
}
|
||||||
|
.butter-cheese-eggs > div:nth-child(2), .butter-cheese-eggs > div:nth-child(5), .butter-cheese-eggs > div:nth-child(8) {
|
||||||
|
border-left: 3px solid #fff;
|
||||||
|
border-right: 3px solid #fff;
|
||||||
|
}
|
||||||
|
.butter-cheese-eggs span {
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user