This commit is contained in:
Markus Dieckmann 2018-06-24 09:28:29 +02:00
parent fa627b8691
commit 4203a962a5

View File

@ -24,7 +24,7 @@
} }
#clock { #clock {
font-family: sans-serif; font-family: sans-serif;
font-size: 3.5rem; font-size: 4.5rem;
font-weight: 600; font-weight: 600;
font-family: "Roboto Mono"; font-family: "Roboto Mono";
color: #fff; color: #fff;
@ -74,7 +74,7 @@
width: 100%; width: 100%;
margin: 1em 0em; margin: 1em 0em;
} }
@media only screen and (max-width: 1280px) { @media only screen and (max-width: 1480px) {
.container { .container {
height: auto; height: auto;
} }
@ -95,7 +95,7 @@
background-color: #272727; background-color: #272727;
border-radius: 3px; border-radius: 3px;
font-family: "Roboto Mono"; font-family: "Roboto Mono";
font-size: 1.25rem; font-size: 1.35rem;
height: auto; height: auto;
margin: 0em .5em; margin: 0em .5em;
} }
@ -113,12 +113,17 @@
} }
.bookmark { .bookmark {
text-decoration: none; text-decoration: none;
text-align: center;
color: #8c8c8b; color: #8c8c8b;
display: block; display: block;
margin: .5em 0em; margin: .5em 0em;
border: solid #464646 2px;
border-radius: 3px;
} }
.bookmark:hover { .bookmark:hover {
color: #fff; color: #fff;
background-color: #444444;
border: solid #747474 2px;
} }
</style> </style>
<link href="favicon.png" rel="shortcut icon" type="image/x-icon" /> <link href="favicon.png" rel="shortcut icon" type="image/x-icon" />
@ -198,7 +203,7 @@
function search(e) { function search(e) {
if (e.keyCode == 13) { if (e.keyCode == 13) {
var val = document.getElementById("search-field").value; var val = document.getElementById("search-field").value;
window.open("https://google.com/search?q=" + val); window.open(("https://google.com/search?q=" + val), "_self");
} }
} }
function getTime() { function getTime() {