├── CNAME ├── README.md ├── favicon.ico ├── HawkeyeWestPestControl-Banner.png ├── index.html └── style.css /CNAME: -------------------------------------------------------------------------------- 1 | hawkeyewestpestcontrol.com 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hawkeyewestpestcontrol.com -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2Cld/hawkeyewestpestcontrol.com/master/favicon.ico -------------------------------------------------------------------------------- /HawkeyeWestPestControl-Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2Cld/hawkeyewestpestcontrol.com/master/HawkeyeWestPestControl-Banner.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Hawkeye West Pest Control 10 | 11 | 12 |
13 |
Hawkeye West Pest Control
14 | (515) 532-3499 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body, html { 2 | min-width: 100%; 3 | height: 100%; 4 | margin: 0; 5 | background-image: url("./HawkeyeWestPestControl-Banner.png"); 6 | background-repeat: no-repeat; 7 | background-size: cover; 8 | background-position: 25% 80%; 9 | } 10 | 11 | .App { 12 | text-align: center; 13 | } 14 | 15 | .App-header { 16 | /*background-color: #65A4E1; 17 | background-image: "./HawkeyeWestPestControl-Banner.png"; 18 | min-height: 100vh; 19 | 20 | display: flex; 21 | flex-direction: column; */ 22 | align-items: center; 23 | justify-content: center; 24 | font-size: calc(20px + 2vmin); 25 | font-weight: bolder; 26 | color: black; 27 | text-shadow: 2px 2px #FFff00; 28 | } 29 | 30 | .phone { 31 | font-size: calc(40px); 32 | font-weight: bold; 33 | text-decoration: none; 34 | color: yellowgreen; 35 | } 36 | --------------------------------------------------------------------------------