diff --git a/app/styles/panel.css b/app/styles/panel.css index f8b8f6c..e1982c6 100644 --- a/app/styles/panel.css +++ b/app/styles/panel.css @@ -11,7 +11,8 @@ -ms-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; - font-size: 0; } + font-size: 0; + font-family: Arial,Helvetica,sans-serif; } .reality-panel a { text-decoration: none; color: white; } @@ -33,17 +34,20 @@ text-align: center; } .reality-panel .header h2 { font-size: 13px; - padding: 10px; } + padding: 10px; + font-weight: bold; } .reality-panel h3 { padding: 10px; - font-size: 15px; } + font-size: 15px; + font-weight: bold; } .reality-panel .toggle-app-button { cursor: pointer; } .reality-panel .content { display: table; position: relative; top: -50px; - margin-bottom: -50px; } + margin-bottom: -50px; + padding: 0px; } .reality-panel .content .row { display: table-row; width: 100%; } diff --git a/app/styles/panel.scss b/app/styles/panel.scss index 85855ce..efa2188 100644 --- a/app/styles/panel.scss +++ b/app/styles/panel.scss @@ -12,6 +12,7 @@ -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; font-size: 0; + font-family: Arial,Helvetica,sans-serif; a { text-decoration: none; @@ -39,6 +40,7 @@ h2 { font-size: 13px; padding: 10px; + font-weight: bold; } text-align: center; } @@ -46,6 +48,7 @@ h3 { padding: 10px; font-size: 15px; + font-weight: bold; } .toggle-app-button { @@ -57,6 +60,7 @@ position: relative; top: -50px; margin-bottom: -50px; + padding: 0px; .row { display: table-row;