-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
421f7f6
commit bd7df85
Showing
3 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
...2+/Angular - The Complete Guide (2023 Edition)/Section_3/mysol_1/s03_01/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
86 changes: 86 additions & 0 deletions
86
...ar2+/Angular - The Complete Guide (2023 Edition)/Section_3/mysol_1/s03_01/src/styles.scss
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 +1,87 @@ | ||
/* You can add global styles to this file, and also import other style files */ | ||
@import "~bootstrap/dist/css/bootstrap.min.css"; | ||
@import "~font-awesome/css/font-awesome.min.css"; | ||
|
||
/* Global Styles */ | ||
* { | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
h1 { | ||
color: #264D73; | ||
font-size: 2.5rem; | ||
} | ||
h2, h3 { | ||
color: #444; | ||
font-weight: lighter; | ||
} | ||
h3 { | ||
font-size: 1.3rem; | ||
} | ||
body { | ||
padding: .5rem; | ||
max-width: 1000px; | ||
margin: auto; | ||
} | ||
@media (min-width: 600px) { | ||
body { | ||
padding: 2rem; | ||
} | ||
} | ||
body, input[text] { | ||
color: #333; | ||
font-family: Cambria, Georgia, serif; | ||
} | ||
a { | ||
cursor: pointer; | ||
} | ||
button { | ||
background-color: #eee; | ||
border: none; | ||
border-radius: 4px; | ||
cursor: pointer; | ||
color: black; | ||
font-size: 1.2rem; | ||
padding: 1rem; | ||
margin-right: 1rem; | ||
margin-bottom: 1rem; | ||
margin-top: 1rem; | ||
} | ||
button:hover { | ||
background-color: black; | ||
color: white; | ||
} | ||
button:disabled { | ||
background-color: #eee; | ||
color: #aaa; | ||
cursor: auto; | ||
} | ||
|
||
/* Navigation link styles */ | ||
nav a { | ||
padding: 5px 10px; | ||
text-decoration: none; | ||
margin-right: 10px; | ||
margin-top: 10px; | ||
display: inline-block; | ||
background-color: #e8e8e8; | ||
color: #3d3d3d; | ||
border-radius: 4px; | ||
} | ||
|
||
nav a:hover { | ||
color: white; | ||
background-color: #42545C; | ||
} | ||
nav a.active { | ||
background-color: black; | ||
color: white; | ||
} | ||
hr { | ||
margin: 1.5rem 0; | ||
} | ||
input[type="text"] { | ||
box-sizing: border-box; | ||
width: 100%; | ||
padding: .5rem; | ||
} | ||
|