diff options
| author | Kumar Priyansh <[email protected]> | 2018-11-13 12:28:35 +0530 |
|---|---|---|
| committer | Kumar Priyansh <[email protected]> | 2018-11-13 12:28:35 +0530 |
| commit | 997e64e900e92669055d72b24575407544635086 (patch) | |
| tree | d624aadb49076797e5ce9aa1fbc95b0c5a527944 /css/style.css | |
| parent | b9b67f24f6043e5f7658e6a8601af4d09e7783b0 (diff) | |
| download | aboutscreen-997e64e900e92669055d72b24575407544635086.tar.xz aboutscreen-997e64e900e92669055d72b24575407544635086.zip | |
Added files via GIT
Diffstat (limited to 'css/style.css')
| -rw-r--r-- | css/style.css | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..0642274 --- /dev/null +++ b/css/style.css @@ -0,0 +1,127 @@ +@font-face { + font-family: 'Lato Hairline'; + src: url(../fonts/Lato/Lato-Hairline.ttf); +} +@font-face { + font-family: 'Lato Light'; + src: url(../fonts/Lato/Lato-Light.ttf); +} +@font-face { + font-family: 'Lato'; + src: url(../fonts/Lato/Lato-Regular.ttf); +} +body { + margin: 0; + padding: 0; + -ms-overflow-style: scrollbar; + -webkit-app-region:drag; + background-color: #F3F3F3; +} +.bgcontainer { + width: 100%; + height: 100vh; + background-image: url(../images/image-alt.jpg); + background-size: 100%; + background-position: bottom; + background-repeat: no-repeat; +} +.logo { + width: 60px; + position: absolute; + top: 30px; + right: 160px; + /* background-color: #fff; + padding: 20px; + border-radius: 10px; + box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.75); */ + display: none; +} +.title { + font-size: 2em; + font-family: 'Lato Hairline'; + position: absolute; + top: 20px; + left: 50%; + transform: translateX(-50%); +} +.description { + font-size: 1em; + font-family: 'Lato Light'; + position: absolute; + top: 70px; + left: 50%; + transform: translateX(-50%); +} +/* +.ram { + font-size: 1em; + font-family: 'Lato Light'; + position: absolute; + bottom: 275px; + left: 5%; +} +.cpu { + font-size: 1em; + font-family: 'Lato Light'; + position: absolute; + bottom: 250px; + left: 5%; +} +.processor { + font-size: 1em; + font-family: 'Lato Light'; + position: absolute; + bottom: 225px; + left: 5%; +} +.res { + font-size: 1em; + font-family: 'Lato Light'; + position: absolute; + bottom: 200px; + left: 5%; +} */ +.info { + position: absolute; + bottom: 100px; + left: 30px; + font-family: 'Lato Light'; +} +.links { + position: absolute; + bottom: 175px; + right: 30px; + font-family: 'Lato Light'; + /* text-align: right; */ +} +.copyright { + position: absolute; + bottom: 0px; + left: 30px; + font-family: 'Lato'; + text-align: right; + font-size: 0.7em; + color: rgb(75, 75, 75); +} +a { + color: black; + text-decoration: none; + padding: 5px 15px 7px 15px; +} +a:hover { + color: white; + background-color: rgb(70, 70, 70); + border-radius: 30px; +} +#close { + position: absolute; + right: 10px; + top: 10px; + font-family: 'Lato'; + color: white; + background-color: rgb(70, 70, 70); + border-radius: 30px; + border: none; + outline: none; + padding: 5px 15px 7px 15px; +}
\ No newline at end of file |
