Browse Source

Small optimizations. Fixed font-weights, removed unnecessary imports.

KrisVos130 7 years ago
parent
commit
dd85bcaeea

+ 0 - 4
frontend/app/index.tpl.html

@@ -34,10 +34,6 @@
 	<meta name="theme-color" content="#03a9f4">
 	<meta name="google" content="nositelinkssearchbox"/>
 
-
-	<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet"
-		  type="text/css">
-	<link href="https://fonts.googleapis.com/css?family=Roboto:100,400" rel="stylesheet">
 	<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
 	<!--script src="https://www.youtube.com/iframe_api"></script-->
 	<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.15.0/moment.min.js"></script>

+ 10 - 1
frontend/app/styles/_colors.scss

@@ -8,4 +8,13 @@ $musare_color_white: #FFFFFF;
 $musare_color_green: #329800;
 $musare_color_dark_blue: #4977C8;
 $musare_color_light_gray: #C4C4C4;
-$musare_shadow_color: hsla(0, 0, 0, .2);
+$musare_shadow_color: hsla(0, 0, 0, .2);
+
+/* Font-weight:
+100 = light
+300 = semilight
+400 = regular
+500 = semibold
+700 = bold
+900 = black
+*/

+ 1 - 1
frontend/app/styles/main.scss

@@ -71,7 +71,7 @@ main {
 		}
 
 		p {
-			font-weight: 600;
+			font-weight: 500;
 
 			font-size: 16px;
 			line-height: 21px;

+ 1 - 1
frontend/app/styles/profile.scss

@@ -33,7 +33,7 @@ main#profile {
 			}
 
 			b {
-				font-weight: 600;
+				font-weight: 500;
 				font-size: 18px;
 				line-height: 24px;
 				margin-bottom: 8px;

+ 6 - 6
frontend/app/styles/team.scss

@@ -44,18 +44,18 @@ main#team {
 					text-align: center;
 					font-size: 17px;
 					line-height: 22px;
-					font-weight: 600;
+					font-weight: 500;
 				}
 
 				.line {
 					font-size: 12px;
 					line-height: 16px;
 					b {
-						font-weight: 600;
+						font-weight: 500;
 					}
 
 					span {
-						font-weight: 100; // TODO Figure out proper font-weight
+						font-weight: 100;
 					}
 				}
 			}
@@ -118,18 +118,18 @@ main#team {
 					text-align: center;
 					font-size: 17px;
 					line-height: 22px;
-					font-weight: 600;
+					font-weight: 500;
 				}
 
 				.line {
 					font-size: 12px;
 					line-height: 16px;
 					b {
-						font-weight: 600;
+						font-weight: 500;
 					}
 
 					span {
-						font-weight: 100; // TODO Figure out proper font-weight
+						font-weight: 100;
 					}
 				}
 			}