-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP Dashboard : progress on intro block
- Loading branch information
1 parent
73b9476
commit a8f705b
Showing
4 changed files
with
94 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
.intro-block { | ||
background-color: var(--background-color); | ||
color: rgba(0, 0, 0, 0.87); | ||
|
||
padding-left:30px; | ||
padding-right:30px; | ||
padding-top: 1px; | ||
padding-bottom: 20px; | ||
} | ||
|
||
.intro-block p { | ||
font-family: 'Roboto'; | ||
font-style: normal; | ||
font-weight: 400; | ||
font-size: 16px; | ||
line-height: 150%; | ||
letter-spacing: 0.15px; | ||
} | ||
|
||
.intro-block button { | ||
margin-right:10px; | ||
} | ||
|
||
.explore-data-button { | ||
|
||
background: #2196F3; | ||
/* elevation/2 */ | ||
box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.12), 0px 2px 2px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2); | ||
border-radius: 4px; | ||
|
||
|
||
/* button/small */ | ||
font-family: 'Roboto'; | ||
font-style: normal; | ||
font-weight: 500; | ||
font-size: 13px; | ||
line-height: 22px; | ||
/* identical to box height, or 169% */ | ||
letter-spacing: 0.46px; | ||
text-transform: uppercase; | ||
|
||
color: #FFFFFF; | ||
border-color:transparent; | ||
} | ||
|
||
.learn-more-button, .github-button { | ||
|
||
background-color: unset; | ||
border-color: transparent; | ||
|
||
/* button/small */ | ||
font-family: 'Roboto'; | ||
font-style: normal; | ||
font-weight: 500; | ||
font-size: 13px; | ||
line-height: 22px; | ||
/* identical to box height, or 169% */ | ||
letter-spacing: 0.46px; | ||
text-transform: uppercase; | ||
color: rgba(0, 0, 0, 0.87); | ||
|
||
} |
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