In this section, we will need to make some additional changes to the Styles.css file. This file is essentially a cascading style sheet (CSS) that can be used by each of our Razor template pages. As a result, the Razor template pages will inherit everything that it contains.
We will basically be adding some additional tags that will apply changes to the table and body component of each of our Razor template pages, as well as setting padding to margins, font sizes, font styles, font colors, and URL link colors.
Let's start by updating the Style.css file by going through the following steps:
- Locate and open the Style.css file, which is located in the Resources folder or the Assets folder (in Android) and ensure that it is displayed within the code editor. Enter the following highlighted code sections:
/* This is a minimal...