swift
This commit is contained in:
@ -0,0 +1,98 @@
|
||||
/*
|
||||
Put your custom overlay styles in here
|
||||
You can use your northpass color palette in this file
|
||||
|
||||
{{ color_palette.button_font_color }}
|
||||
{{ color_palette.button_color }}
|
||||
{{ color_palette.button_hover_color }}
|
||||
{{ color_palette.header_font_color }}
|
||||
{{ color_palette.header_font_hover_color }}
|
||||
{{ color_palette.header_color }}
|
||||
|
||||
*/
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.mr-1 {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.ml-1 {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.mx-1 {
|
||||
margin-right: 10px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.mt-1 {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.mt-3 {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.text-left{
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.justify{
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.small-shadow{
|
||||
border: 2px solid #333333;
|
||||
box-shadow: 3px 3px 3px #888888;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.swiftPink-button{
|
||||
background-color: #ee255c;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.swiftPink-button:hover {
|
||||
background-color: #e1466f;
|
||||
}
|
||||
|
||||
.np-homepage-subheadline{
|
||||
line-height: 2rem
|
||||
}
|
||||
|
||||
.np-card-content-progress {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.np-top-cta-progress-content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.m-sub {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 500px){
|
||||
.np-homepage-subheadline{
|
||||
line-height: 1rem
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@media screen and (min-width: 768px){
|
||||
.np-learning-path-image {
|
||||
padding: 1em 0px;
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1500px){
|
||||
.np-learning-path-image {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user