-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
159 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,111 +1,147 @@ | ||
/* Global Styles */ | ||
|
||
* { | ||
font-family: 'Roboto', Arial, sans-serif; | ||
color: #616161; | ||
box-sizing: border-box; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
|
||
router-outlet + * { | ||
padding: 0 16px; | ||
} | ||
|
||
/* Text */ | ||
|
||
h1 { | ||
font-size: 32px; | ||
} | ||
|
||
h2 { | ||
font-size: 20px; | ||
} | ||
|
||
h1, h2 { | ||
font-weight: lighter; | ||
} | ||
|
||
p { | ||
font-size: 14px; | ||
} | ||
|
||
/* Hyperlink */ | ||
|
||
a { | ||
cursor: pointer; | ||
color: #1976d2; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
opacity: 0.8; | ||
} | ||
|
||
/* Input */ | ||
|
||
input { | ||
font-size: 14px; | ||
border-radius: 2px; | ||
padding: 8px; | ||
margin-bottom: 16px; | ||
border: 1px solid #BDBDBD; | ||
} | ||
|
||
label { | ||
font-size: 12px; | ||
font-weight: bold; | ||
margin-bottom: 4px; | ||
display: block; | ||
text-transform: uppercase; | ||
} | ||
|
||
/* Button */ | ||
.button, button { | ||
display: inline-flex; | ||
align-items: center; | ||
padding: 8px 16px; | ||
border-radius: 2px; | ||
font-size: 14px; | ||
cursor: pointer; | ||
background-color: #1976d2; | ||
color: white; | ||
border: none; | ||
} | ||
|
||
.button:hover, button:hover { | ||
opacity: 0.8; | ||
font-weight: normal; | ||
} | ||
|
||
.button:disabled, button:disabled { | ||
opacity: 0.5; | ||
cursor: auto; | ||
} | ||
|
||
/* Top Bar */ | ||
|
||
app-top-bar { | ||
width: 100%; | ||
height: 68px; | ||
background-color: #1976d2; | ||
padding: 16px; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
app-top-bar h1 { | ||
color: white; | ||
margin: 0; | ||
} | ||
font-family: 'Roboto', Arial, sans-serif; | ||
color: #616161; | ||
box-sizing: border-box; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
|
||
router-outlet+* { | ||
padding: 0 16px; | ||
} | ||
|
||
/* Text */ | ||
|
||
h1 { | ||
font-size: 32px; | ||
} | ||
|
||
h2 { | ||
font-size: 20px; | ||
} | ||
|
||
h1, | ||
h2 { | ||
font-weight: lighter; | ||
} | ||
|
||
p { | ||
font-size: 14px; | ||
} | ||
|
||
/* Hyperlink */ | ||
|
||
a { | ||
cursor: pointer; | ||
color: #1976d2; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
opacity: 0.8; | ||
} | ||
|
||
/* Input */ | ||
|
||
input { | ||
font-size: 14px; | ||
border-radius: 2px; | ||
padding: 8px; | ||
margin-bottom: 16px; | ||
border: 1px solid #BDBDBD; | ||
} | ||
|
||
label { | ||
font-size: 12px; | ||
font-weight: bold; | ||
margin-bottom: 4px; | ||
display: block; | ||
text-transform: uppercase; | ||
} | ||
|
||
/* Button */ | ||
.button, | ||
button { | ||
display: inline-flex; | ||
align-items: center; | ||
padding: 8px 16px; | ||
border-radius: 2px; | ||
font-size: 14px; | ||
cursor: pointer; | ||
background-color: #1976d2; | ||
color: white; | ||
border: none; | ||
} | ||
|
||
.button:hover, | ||
button:hover { | ||
opacity: 0.8; | ||
font-weight: normal; | ||
} | ||
|
||
.button:disabled, | ||
button:disabled { | ||
opacity: 0.5; | ||
cursor: auto; | ||
} | ||
|
||
/* Top Bar */ | ||
|
||
app-top-bar { | ||
width: 100%; | ||
height: 68px; | ||
background-color: #1976d2; | ||
padding: 16px; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
app-top-bar h1 { | ||
color: white; | ||
margin: 0; | ||
} | ||
|
||
.loading-indicator { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background-color: rgba(0, 0, 0, 0.5); | ||
z-index: 1000; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.spinner { | ||
width: 50px; | ||
height: 50px; | ||
border: 5px solid #fff; | ||
border-radius: 50%; | ||
animation: spin 1s linear infinite; | ||
background: linear-gradient(to right, #FF0000 0%, #FF8000 17%, #FFFF00 33%, #00FF00 50%, #00FFFF 67%, #0080FF 83%, #0000FF 100%); | ||
} | ||
|
||
@keyframes spin { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
|
||
to { | ||
transform: rotate(360deg); | ||
} | ||
} |