More neutral looking font

This commit is contained in:
Tom Slominski
2015-03-08 17:29:23 +00:00
parent b4af3c7dea
commit 400d766b10
2 changed files with 5 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ isq_load_textdomain();
<title><?php echo ISQ::$general['name']; ?></title> <!-- Site title defined in theme settings -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Ubuntu:regular,italic,bold,bolditalic"><!-- Ubuntu from Google Web Fonts -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="<?php echo YOURLS_SITE; ?>/public/style.css" /><!-- Theme CSS -->
<!-- App icons generated using http://realfavicongenerator.net -->

View File

@@ -15,10 +15,13 @@ html {
body {
background: #F1F1F1;
color: black;
font-family: 'Ubuntu', sans-serif, Helvetica, Arial;
font-size: 1.4rem;
}
body, input {
font-family: 'Open Sans', 'Trebuchet MS', Helvetica, sans-serif;
}
::selection {
background: rgba(1,63,109,0.7);
color: #FFF;
@@ -140,10 +143,6 @@ label.secondary {
color: #AFAFAF;
}
input {
font-family: 'Ubuntu', sans-serif, Helvetica, Arial;
}
input:not([type=submit]):not([type=file]) {
width: 100%;
padding: 10px;