From 197268c7abf615c805961b6ebefe1d2df74196dc Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: portfolio --- portfolio/css/main.css | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 portfolio/css/main.css (limited to 'portfolio/css') diff --git a/portfolio/css/main.css b/portfolio/css/main.css new file mode 100644 index 0000000..9ce1f3e --- /dev/null +++ b/portfolio/css/main.css @@ -0,0 +1,89 @@ +html{ + background-color: #000000; + background-image: url("../i/bg.png"); + background-repeat: no-repeat; + background-size: 100%; + color: #EEBB99; +} + +body{ + margin: auto; + width: 70%; +} + +h1{ + margin: .5em; +} + +p{ + font-size: .85em; +} + +a{ + color: #AABBAA; + text-decoration: none; +} + +hr{ + color: #AA9988; +} + +img{ + width: 50%; + padding-left: 22%; + +} + +header{ + width: 75%; + text-align: center; + font-size: .9em; +} +header i{ + font-size: .6em; + font-weight: normal; +} + +nav{ + color: #998877; +} +nav a{ + font-size: 1.03em; + padding-left: 1%; + padding-right: 1%; +} +nav i{ + font-size: .85em; + color: #EECC99; + padding-right: 1%; + float: right; +} + +main{ + padding-top: 3%; +} + +.col{ + position: fixed; + width: 30%; + height: 100%; + overflow-x: hidden; + z-index: 1; +} +#left{ + left: 0; + padding-left: 18%; +} +#right{ + right: 0; + padding-right: 18%; +} + +footer{ + position: fixed; + bottom: 0; + width: 70%; + font-size: .8em; + color: #EECC99; + text-align: center; +} -- cgit 1.4.1