# <center>9^th^ August, 2019</center> ###### tags: `Daily Internship Documentation` --- ## 28^th^ Day of Internship ## Summary Today Mrs.Annie ask our team to modify some components in the User Interface. URL: * [**NTUST_SmartDispenser Github ver 2019.08.09**](https://github.com/ianjoseph2204/NTUST_SmartDispenser/tree/) --- ## Documentation ### 1. Detailed Information Page #### 1.1 detailed-information.page.html 1. Change the Detailed Information to Detailed information. ```htmlmixed=22 <!--Detailed Information text--> <div class="detailed-information-text"> Detailed information </div> ``` #### 1.2 detailed-information.page.scss 1. Remove the font-family & font-weight properties from *.detailed-information-text* class. ```css=54 .detailed-information-text{ position: absolute; height: 20px; width: 100%; font-size: 18px; font-style: normal; font-stretch: normal; text-align: center; color: white; top: 50%; margin-top: 45px; } ``` 2. Change the top distance for classes below from 5px to 10px. ```css=106 .immediate-temperature-text, .toggle-button, .degree-letter{ top: 10px; } ``` 3. Remove the font-family property from classes below. ```css=128 .degree-letter{ width: 20px; margin-left: 5px; margin-right: 5px; font-size: 17px; color: #666666; } ``` ```css=162 .temperature-text{ position: relative; float: left; left: 4px; top: 35%; font-size: 20px; } ``` ```css=198 .information-text{ float: left; left: 10px; color: #666666; } ``` ```css=204 .position-display, .type-display{ float: right; right: 10px; text-align: right; } ``` --- ## Result <font color=red>The new Display Information display:</font> ![](https://i.imgur.com/kIeSRUE.png)