added css stylesheet + updated index.html
All checks were successful
continuous-integration/drone/push Build is passing

* created basic site layout
* added basic styling for all currently used elements
This commit is contained in:
surtur 2020-03-23 04:33:21 +01:00
parent 508f90da24
commit fb4796598a
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
2 changed files with 128 additions and 3 deletions

101
css/style.css Normal file

@ -0,0 +1,101 @@
body {
background: #2b2b2b;
font-size: 16px;
overflow-y: auto;
-webkit-font-smoothing: antialiased;
display: flex;
flex-direction: column;
height: 100%;
min-width: 360px;
min-height: 400px;
margin: 0;
}
p {
color: gainsboro;
text-align: center;
}
h1,h2,h3,h4,h5 {
font-family: Ubuntu,Cantarell,Roboto,-apple-system,BlinkMacSystemFont,system-ui,Segoe UI,Noto Sans,sans-serif,Helvetica,Arial;
color: whitesmoke;
}
img {
border-radius: 3px
}
a:link {
cursor: pointer;
color: #36c;
text-decoration: none;
word-wrap: break-word;
}
a:hover {
color: #36c;
text-decoration: underline;
}
ul {
text-align: center;
color: gainsboro;
padding-top: 0px;
list-style-position: inside;
list-style-type: none;
}
ul li{
text-align: center;
display: inline-box;
line-height: 1.3;
}
.wrap {
word-wrap: break-word;
word-break: break-all
}
.title {
color: whitesmoke;
text-align: center;
}
.subtitle {
color: whitesmoke;
text-align: center;
}
.copyright {
color: gainsboro;
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
margin-top: 0;
height: auto;
line-height: 1.5;
position: absolute;
bottom: 0;
width: 100%;
font-size: 80%;
}
.copyright a {
cursor: pointer;
color: gainsboro;
text-decoration: none;
border: none;
box-shadow: inset 0 0px 0 whitesmoke;
transition: opacity .6s cubic-bezier(0.165, 0.84, 0.44, 1);
-webkit-transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.copyright a:hover {
color: #2b2b2b;
box-shadow: inset 0 -2em 0 whitesmoke;
opacity: 1;
}
.randlineargradient {
color: linear-gradient(white,blue,red);
}

@ -9,13 +9,37 @@
<title>tew-0x00</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
Hello friend
<script src="" async defer></script>
<h1 class="title">tew-0x00</h1>
<h3 class="subtitle"> &gt CSS DEMO &lt </h3>
<p>Hello friend. This page tries to demonstrate basic CSS3 functionality.
<ul >
<li><a href="#">CSS3 round corners</a></li>
<li><a href="#">CSS3 background gradient</a></li>
<li><a href="#">CSS3 shadows</a></li>
<li><a href="#">CSS3 2D transforms</a></li>
<li><a href="#">CSS3 3D transforms</a></li>
<li><a href="#">CSS3 transitions</a></li>
<li><a href="#">CSS3 animations</a></li>
<li><a href="#">CSS3 multiple columns</a></li>
<li><a href="#">CSS3 box sizing</a></li>
<li><a href="#">CSS3 flexbox</a></li>
</ul>
</p>
<footer class="copyright">
&copy; 2020 <a href="https://git.dotya.ml/wanderer">wanderer</a>
· <a href="https://tew0x00.dotya.ml/">tew-0x00</a>
· WTFPL<br>
<a href="https://git.dotya.ml/wanderer/TEW-0x00" target="_blank" title="page source">source</a>
</footer>
<!-- <script src="" async defer></script> -->
</body>
</html>