parent
e82ee38fff
commit
4effd83a26
@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,200;0,300;1,200;1,300&display=swap" rel="stylesheet">
|
||||
<link href="styles.css" rel="stylesheet">
|
||||
<title>diego@void ~</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="container">
|
||||
<div id="sun-icon" class="timecon">
|
||||
<div class="img-container"><img class="sun-center" src="i/sun.svg"></div>
|
||||
<div class="img-container"><img class="sunrays" src="i/sunrays.svg"></div>
|
||||
</div>
|
||||
<div id="moon-icon" class="timecon">
|
||||
<div class="img-container"><img class="moon" src="i/moon.svg"></div>
|
||||
<div class="stars star-one"></div>
|
||||
<div class="stars star-two"></div>
|
||||
<div class="stars star-three"></div>
|
||||
<div class="stars star-four"></div>
|
||||
</div>
|
||||
<div id="greeting" class="center"></div>
|
||||
<div id="time" class="center">
|
||||
<span id="hour" class="center"></span><span id="minute" class="center"></span><span id="second" class="center"></span>
|
||||
</div>
|
||||
<form action="javascript:search()">
|
||||
<input id="search" type="text" placeholder="Search duckduckgo">
|
||||
</form>
|
||||
<div id="bookmarks">
|
||||
<h2><span>Trabajo</span></h2>
|
||||
<a href="https://www.ramajudicial.gov.co/portal/inicio">Rama Judicial</a>
|
||||
<a href="https://procesojudicial.ramajudicial.gov.co/TutelaEnLinea">Radicación de tutelas</a>
|
||||
<a href="https://www.ramajudicial.gov.co/directorio-cuentas-de-correo-electronico">Correos electrónicos</a>
|
||||
<a href="https://consultaprocesos.ramajudicial.gov.co/procesos/bienvenida">Consulta de procesos</a>
|
||||
<a href="https://drive.google.com/drive/folders/1xVIVArl1b7b_bcW4DYlWzdSgfE_ZAqsb">Google drive</a>
|
||||
<h2><span>Herramientas</span></h2>
|
||||
<div class="tiled">
|
||||
<a href="https://www.gmx.es/">Gmx</a>
|
||||
<a href="https://mail.google.com/mail/u/0/#inbox">Gmail</a>
|
||||
<a href="https://account.proton.me/login?product=generic&language=en">Protonmail</a>
|
||||
<a href="https://outlook.live.com/owa/">Outlook</a>
|
||||
<a href="https://www.ilovepdf.com/">I love pdf</a>
|
||||
<a href="https://www.iloveimg.com/">I love img</a>
|
||||
<a href="https://html2pdf.com/">Html a pdf</a>
|
||||
<a href="https://clientes.e-entrega.co/">Email certificado</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,3 @@
|
||||
function search() {
|
||||
window.location.href = "https://duckduckgo.com/?q=" + document.getElementById("search").value
|
||||
}
|
@ -0,0 +1,152 @@
|
||||
html, body, * {
|
||||
font-family: "Fira Sans", sans-serif;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
background-color: #101010;
|
||||
color: #f7f7f7;
|
||||
}
|
||||
#container {
|
||||
margin: 5px auto 0;
|
||||
width: 580px;
|
||||
}
|
||||
#greeting {
|
||||
margin-top: 5px;
|
||||
font-size: 30px;
|
||||
}
|
||||
#sun-icon, #moon-icon {
|
||||
display: none;
|
||||
}
|
||||
#sun-icon.active, #moon-icon.active {
|
||||
display: block;
|
||||
}
|
||||
#time {
|
||||
font-size: 70px;
|
||||
font-weight: 300;
|
||||
}
|
||||
#hour, #minute, #second {
|
||||
display: inline-block;
|
||||
margin: 0 10px;
|
||||
width: 70px;
|
||||
}
|
||||
#search {
|
||||
width: 100%;
|
||||
background-color: #101010;
|
||||
outline: none;
|
||||
border: none;
|
||||
border-bottom: 1px solid #f7f7f7;
|
||||
margin-top: 20px;
|
||||
font-size: 13px;
|
||||
color: #999999;
|
||||
font-weight: 200;
|
||||
padding: 10px 0;
|
||||
transition: border-bottom .3s ease;
|
||||
}
|
||||
#search:hover {
|
||||
border-bottom: 1px solid #454545;
|
||||
}
|
||||
#search:focus, #search:active {
|
||||
border-bottom: 1px solid #f7f7f7;
|
||||
}
|
||||
#search::placeholder {
|
||||
color: #454545;
|
||||
}
|
||||
#bookmarks {
|
||||
margin-top: 20px;
|
||||
}
|
||||
#bookmarks a,
|
||||
#bookmarks a:visited,
|
||||
#bookmarks a:active {
|
||||
display: block;
|
||||
color: #999999;
|
||||
padding: 5px 10px;
|
||||
line-height: 30px;
|
||||
font-size: 13px;
|
||||
background-color: #454545;
|
||||
text-decoration: none;
|
||||
transition: background-color .5s ease, color .5s ease;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
#bookmarks a:hover {
|
||||
color: #f7f7f7;
|
||||
background-color: #454545;
|
||||
}
|
||||
#bookmarks h2 {
|
||||
font-size: 13px;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid #f7f7f7;
|
||||
line-height: 0px;
|
||||
margin: 40px 0 20px;
|
||||
}
|
||||
#bookmarks .tiled {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
gap:5px;
|
||||
}
|
||||
#bookmarks .tiled a,
|
||||
#bookmarks .tiled a:visited,
|
||||
#bookmarks .tiled a:active {
|
||||
display: block;
|
||||
width: calc(25% - 5px);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
#bookmarks h2 span {
|
||||
background-color: #454545;
|
||||
padding-right: 10px;
|
||||
}
|
||||
.center { text-align: center; }
|
||||
.timecon {
|
||||
position: relative;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.img-container img {
|
||||
position: absolute;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
.sunrays {
|
||||
animation: rotation 40s infinite linear;
|
||||
}
|
||||
.stars {
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
background-color: #f7f7f7;
|
||||
border-radius: 100px;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
animation: stars 10s infinite ease-in-out;
|
||||
}
|
||||
.star-one {
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
animation-delay: 3s;
|
||||
}
|
||||
.star-two {
|
||||
top: 40px;
|
||||
right: 5px;
|
||||
animation-delay: 6s;
|
||||
}
|
||||
.star-three {
|
||||
top: 15px;
|
||||
}
|
||||
.star-four {
|
||||
bottom: 10px;
|
||||
left: 10px;
|
||||
animation-delay: 9s;
|
||||
}
|
||||
@keyframes stars {
|
||||
0% { opacity: 0%; }
|
||||
50% { opacity: 100%; }
|
||||
0% { opacity: 0%; }
|
||||
}
|
||||
@keyframes rotation {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue