Skip to content

Commit a0241cc

Browse files
committed
Remove font-weight: 700 and use 600 instead since that's what we are loading from Google fonts.
1 parent e0b3413 commit a0241cc

File tree

22 files changed

+22
-22
lines changed
  • curriculum/section14/lectures
    • 09_display_table_of_all_movies
    • 10_create_page_movie_details
    • 11_setting_movie_rating
    • 12_setting_movie_watched_date
    • 13_create_custom_wtform_widget_multiline_input
    • 14_edit_movies_pre_populate_wtform
    • 15_user_signup_in_flask_app
    • 16_user_login_in_flask_app
    • 17_showing_only_user_movies
    • 18_user_logout_in_flask_app
    • 19_deploying_to_heroku

22 files changed

+22
-22
lines changed

curriculum/section14/lectures/09_display_table_of_all_movies/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ The first thing I'll do in our new CSS file is position the "Add movie" button s
246246
border-radius: 50%;
247247
color: var(--text-dark);
248248
text-decoration: none;
249-
font-weight: 700;
249+
font-weight: 600;
250250
font-size: 1.75rem;
251251
align-items: center;
252252
justify-content: center;

curriculum/section14/lectures/09_display_table_of_all_movies/end/movie_library/static/css/movies.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
border-radius: 50%;
1010
color: var(--text-dark);
1111
text-decoration: none;
12-
font-weight: 700;
12+
font-weight: 600;
1313
font-size: 1.75rem;
1414
align-items: center;
1515
justify-content: center;

curriculum/section14/lectures/10_create_page_movie_details/end/movie_library/static/css/movies.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
border-radius: 50%;
1010
color: var(--text-dark);
1111
text-decoration: none;
12-
font-weight: 700;
12+
font-weight: 600;
1313
font-size: 1.75rem;
1414
align-items: center;
1515
justify-content: center;

curriculum/section14/lectures/10_create_page_movie_details/start/movie_library/static/css/movies.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
border-radius: 50%;
1010
color: var(--text-dark);
1111
text-decoration: none;
12-
font-weight: 700;
12+
font-weight: 600;
1313
font-size: 1.75rem;
1414
align-items: center;
1515
justify-content: center;

curriculum/section14/lectures/11_setting_movie_rating/end/movie_library/static/css/movies.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
border-radius: 50%;
1010
color: var(--text-dark);
1111
text-decoration: none;
12-
font-weight: 700;
12+
font-weight: 600;
1313
font-size: 1.75rem;
1414
align-items: center;
1515
justify-content: center;

curriculum/section14/lectures/11_setting_movie_rating/start/movie_library/static/css/movies.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
border-radius: 50%;
1010
color: var(--text-dark);
1111
text-decoration: none;
12-
font-weight: 700;
12+
font-weight: 600;
1313
font-size: 1.75rem;
1414
align-items: center;
1515
justify-content: center;

curriculum/section14/lectures/12_setting_movie_watched_date/end/movie_library/static/css/movies.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
border-radius: 50%;
1010
color: var(--text-dark);
1111
text-decoration: none;
12-
font-weight: 700;
12+
font-weight: 600;
1313
font-size: 1.75rem;
1414
align-items: center;
1515
justify-content: center;

curriculum/section14/lectures/12_setting_movie_watched_date/start/movie_library/static/css/movies.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
border-radius: 50%;
1010
color: var(--text-dark);
1111
text-decoration: none;
12-
font-weight: 700;
12+
font-weight: 600;
1313
font-size: 1.75rem;
1414
align-items: center;
1515
justify-content: center;

curriculum/section14/lectures/13_create_custom_wtform_widget_multiline_input/end/movie_library/static/css/movies.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
border-radius: 50%;
1010
color: var(--text-dark);
1111
text-decoration: none;
12-
font-weight: 700;
12+
font-weight: 600;
1313
font-size: 1.75rem;
1414
align-items: center;
1515
justify-content: center;

curriculum/section14/lectures/13_create_custom_wtform_widget_multiline_input/start/movie_library/static/css/movies.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
border-radius: 50%;
1010
color: var(--text-dark);
1111
text-decoration: none;
12-
font-weight: 700;
12+
font-weight: 600;
1313
font-size: 1.75rem;
1414
align-items: center;
1515
justify-content: center;

0 commit comments

Comments
 (0)