aboutsummaryrefslogtreecommitdiff
path: root/css/main.scss
diff options
context:
space:
mode:
authorPriyansh <[email protected]>2020-12-22 19:36:23 +0530
committerPriyansh <[email protected]>2020-12-22 19:36:23 +0530
commite6c2397d0be390f167a47b34897a5799a91e2328 (patch)
treec4c6595f4a364881a809eb2bcb4f552030efa632 /css/main.scss
parent90f9e95a70c420af81e041341e56bd70c475c81e (diff)
downloadstyx-e6c2397d0be390f167a47b34897a5799a91e2328.tar.xz
styx-e6c2397d0be390f167a47b34897a5799a91e2328.zip
Added SCSS for Icons
Diffstat (limited to 'css/main.scss')
-rw-r--r--css/main.scss52
1 files changed, 52 insertions, 0 deletions
diff --git a/css/main.scss b/css/main.scss
index e69de29..4bbee18 100644
--- a/css/main.scss
+++ b/css/main.scss
@@ -0,0 +1,52 @@
+body {
+ margin: 0;
+ padding: 0;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
+ Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
+}
+
+.topNavigationBar {
+ padding: 5px 10px;
+ -webkit-user-select: none;
+ -webkit-app-region: drag;
+ background: #0075c4; /* Old browsers */
+ background: -moz-linear-gradient(
+ top,
+ #0075c4 0%,
+ #0267c1 100%
+ ); /* FF3.6-15 */
+ background: -webkit-linear-gradient(
+ top,
+ #0075c4 0%,
+ #0267c1 100%
+ ); /* Chrome10-25,Safari5.1-6 */
+ background: linear-gradient(
+ to bottom,
+ #0075c4 0%,
+ #0267c1 100%
+ ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0075c4', endColorstr='#0267c1',GradientType=0 ); /* IE6-9 */
+}
+
+.titlebar {
+ text-align: center;
+ font-size: 12px;
+ margin: 0px 0px 10px 0px;
+ color: white;
+ font-weight: 400;
+}
+
+.actionButtons {
+ .btn {
+ background: transparent;
+ width: 32px;
+ height: 32px;
+ border: none;
+ outline: none;
+ background-size: contain;
+ background-position: center;
+ background-repeat: no-repeat;
+ }
+}
+
+@import "icons.scss";