Last active
August 30, 2020 23:04
-
-
Save jinwook-k/75ec10ea381681787df6ceb9e11d8cd2 to your computer and use it in GitHub Desktop.
client/src/Stylesheets/...
This file contains hidden or 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
@import "Header"; | |
@import "WeatherForm"; | |
@import "Container"; | |
@import "WeatherPanels"; | |
@font-face { | |
font-family: MajorMonoDisplay; | |
src: url("../assets/Fonts/MajorMonoDisplay-Regular.ttf"); | |
} | |
@font-face { | |
font-family: ShareTechMono; | |
src: url("../assets/Fonts/ShareTechMono-Regular.ttf"); | |
} | |
.App { | |
display: grid; | |
grid-template-columns: 1fr 9fr 1fr; | |
font-family: ShareTechMono, serif; | |
} | |
hr { | |
display: block; | |
height: 1px; | |
border: 0; | |
border-top: 1px solid #ccc; | |
margin: 1em 0; | |
padding: 0; | |
} |
This file contains hidden or 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
.weather { | |
background: white; | |
grid-column: 2/3; | |
width: 100%; | |
display: grid; | |
grid-row-gap: 50px; | |
} |
This file contains hidden or 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
.annotation { | |
font-size: 8px; | |
font-family: ShareTechMono, serif; | |
} | |
.header { | |
font-family: MajorMonoDisplay, serif; | |
text-align: center; | |
background: white; | |
box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1); | |
margin-bottom: 50px; | |
padding: 20px 0; | |
} |
This file contains hidden or 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
.weather-form { | |
.zipCode { | |
margin: 20px 0; | |
.zipCodeInput { | |
max-width: 200px; | |
display: inline-block; | |
} | |
} | |
.save-btn { | |
margin-top: 15px; | |
} | |
} |
This file contains hidden or 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
.weather-info { | |
display: grid; | |
.city-name { | |
text-decoration: underline; | |
align-self: center; | |
justify-self: center; | |
} | |
.overcast { | |
display: grid; | |
.overcast-img, | |
.overcast-description { | |
align-self: center; | |
justify-self: center; | |
} | |
} | |
.current-weather { | |
display: grid; | |
grid-template-columns: repeat(3, 1fr); | |
.humidity, | |
.curr-temp, | |
.feels-like { | |
align-self: center; | |
justify-self: center; | |
} | |
} | |
.temps { | |
display: grid; | |
grid-template-columns: repeat(2, 1fr); | |
.min-temp, | |
.max-temp { | |
align-self: center; | |
justify-self: center; | |
} | |
} | |
} |
This file contains hidden or 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
@import "WeatherInfoPanel"; | |
.weather-panels { | |
display: grid; | |
grid-template-columns: repeat(2, 1fr); | |
grid-column-gap: 50px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment