Change px values to rem values in font-size declarations

This commit is contained in:
James Taylor 2020-02-22 22:14:11 -08:00
parent 0989d55db1
commit 00cf61d625
4 changed files with 7 additions and 7 deletions

View File

@ -12,7 +12,7 @@
} }
.video-metadata > h2{ .video-metadata > h2{
grid-row: 2; grid-row: 2;
font-size: 15px; font-size: 0.875rem;
} }
.video-metadata > span{ .video-metadata > span{
grid-row:3; grid-row:3;

View File

@ -168,7 +168,7 @@ body{
.item{ .item{
background-color:var(--interface-color); background-color:var(--interface-color);
text-decoration:none; text-decoration:none;
font-size: 12px; font-size: 0.75rem;
color: #767676; color: #767676;
} }
@ -205,7 +205,7 @@ body{
right: 2px; right: 2px;
opacity: .8; opacity: .8;
color: #ffffff; color: #ffffff;
font-size: 12px; font-size: 0.75rem;
background-color: #000000; background-color: #000000;
} }
.playlist-item .thumbnail-info{ .playlist-item .thumbnail-info{
@ -218,7 +218,7 @@ body{
white-space: pre-line; white-space: pre-line;
opacity: .8; opacity: .8;
color: #cfcfcf; color: #cfcfcf;
font-size: 12px; font-size: 0.75rem;
background-color: #000000; background-color: #000000;
} }
.playlist-item .thumbnail-info span{ /* trick to vertically center the text */ .playlist-item .thumbnail-info span{ /* trick to vertically center the text */
@ -243,7 +243,7 @@ body{
overflow:hidden; overflow:hidden;
color: var(--text-color); color: var(--text-color);
font-size: 16px; font-size: 1rem;
font-weight: 500; font-weight: 500;
text-decoration:initial; text-decoration:initial;
} }

View File

@ -3,7 +3,7 @@
{% block style %} {% block style %}
h1{ h1{
font-size: 32px; font-size: 2rem;
font-weight: normal; font-weight: normal;
} }
#error-box, #error-message{ #error-box, #error-message{

View File

@ -16,7 +16,7 @@
padding:10px; padding:10px;
} }
.subscriptions-import-form h2{ .subscriptions-import-form h2{
font-size: 20px; font-size: 1.25rem;
margin-bottom: 10px; margin-bottom: 10px;
} }