Skip to content

Commit

Permalink
Increase base font size from 12 to 14.66px
Browse files Browse the repository at this point in the history
  • Loading branch information
lilith committed Feb 24, 2024
1 parent 4f496a4 commit c07491c
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions content/css/less/smart.less
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@

@o-accent-color: @blue;//#29a9df;

@base-font-size: 14.66px;
@base-line-height: 18px;


html { -webkit-font-smoothing: antialiased; }

.clear {
Expand All @@ -21,7 +25,7 @@ html { -webkit-font-smoothing: antialiased; }

body {
font-family: 'Droid Sans';
font-size: 12px;
font-size: @base-font-size;
color: @o-text-color;
}

Expand All @@ -34,32 +38,32 @@ h1, h2, h3, h4, h5, h6 {
}

h1 {
font-size: 36px;
font-size: @base-font-size *3;
line-height: 40px;
}

h2 {
font-size: 20px;
font-size: @base-font-size * 1.75;
line-height: 40px;
}

h3 {
font-size: 18px;
font-size: @base-font-size * 1.5;
line-height: 32px;
}

h4 {
font-size: 13px;
font-size: @base-font-size * 1.1;
line-height: 30px;
}

h5 {
font-size: 12px;
font-size: @base-font-size;
line-height: 26px;
}

h6 {
font-size: 11px;
font-size: @base-font-size * 0.9;
line-height: 24px;
}

Expand Down Expand Up @@ -117,7 +121,7 @@ header {
.brand {
color: #ddd !important;
text-decoration: none !important;
font-size: 28px !important;
font-size: @base-font-size * 2.125 !important;
margin-left: 10px;
text-shadow: none !important;
margin-top: 10px;
Expand Down Expand Up @@ -762,7 +766,7 @@ a .icons-box-vert p{
}

.team-name span {
font-size: 12px;
font-size: @base-font-size;
font-weight: normal;
color: #888;
}
Expand Down Expand Up @@ -829,8 +833,8 @@ input[type="button"] {
=================================================================== */
.alert {
font-family: Arial, sans-serif;
font-size: 12px;
line-height: 18px;
font-size: @base-font-size;
line-height: @base-line-height;
margin-bottom: 15px;
position: relative;
padding: 14px 40px 14px 18px;
Expand Down Expand Up @@ -1205,13 +1209,13 @@ ol li ol.childlist{
ol.commentlist li ol.childlist li:first-child {
border-top: 1px solid #e9e9e9;
padding: 25px 0 0 0;
font-size: 12px;
font-size: @base-font-size;
}

ol.commentlist li ol.childlist li {
border-top: 1px solid #e9e9e9;
margin:25px 0 15px 0;
font-size: 12px;
font-size: @base-font-size;
}

.comments {
Expand Down Expand Up @@ -1407,7 +1411,7 @@ a.buy:hover {
}

.time {
font-size: 12px;
font-size: @base-font-size;
font-weight: normal;
}

Expand Down Expand Up @@ -1863,7 +1867,7 @@ li.current {
display: inline-block;
color: @o-text-color;
text-decoration: none;
font-size: 12px;
font-size: @base-font-size;
font-family: 'Droid Sans';
text-transform: lowercase;
padding: 10px 15px 10px 0px;
Expand Down

0 comments on commit c07491c

Please sign in to comment.