From 9d53d8857eaa1c9405894a88ca75bc4657e42f35 Mon Sep 17 00:00:00 2001 From: msglm Date: Sat, 14 Jan 2023 05:31:48 -0600 Subject: Inital Commit --- .../Ch7_msglm/print/bistroprint.css | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 HTML/Chapter/Ch. 7 hands-on assignments/Ch7_msglm/print/bistroprint.css (limited to 'HTML/Chapter/Ch. 7 hands-on assignments/Ch7_msglm/print/bistroprint.css') diff --git a/HTML/Chapter/Ch. 7 hands-on assignments/Ch7_msglm/print/bistroprint.css b/HTML/Chapter/Ch. 7 hands-on assignments/Ch7_msglm/print/bistroprint.css new file mode 100644 index 0000000..e165b24 --- /dev/null +++ b/HTML/Chapter/Ch. 7 hands-on assignments/Ch7_msglm/print/bistroprint.css @@ -0,0 +1,55 @@ +* { + box-sizing: border-box; +} + +body { background-color: #00005D; +font-family: Verdana, Arial, sans-serif; } +#wrapper { margin: 0 auto; + width: 80%; + min-width: 940px; + background-color: #B3C7E6; +color: #000066; } +header { background-color: #869DC7; + color: #000000; + font-size: 20pt; + padding: 10px 10px 10px 155px; + height: 150px; + background-repeat: no-repeat; +background-image: url(7.8.lighthouselogo.jpg); } + +nav{ +display:none; +} + +main { + background-color: #FFFFFF; + color: #000000; + padding: 10px 20px; + display: block; + overflow: auto; + font-family: "Times New Roman", serif; + font-size: 12pt; +} +h2 { color: #869DC7; font-family: Arial, sans-serif; } +#floatright { float: right; margin: 10px; } + +nav ul { list-style-type: none; + margin: 0; +padding: 0; } +nav a { text-decoration: none; + padding: 20px; + display: block; + background-color: #B3C7E6; + border-bottom: 1px solid #FFFFFF; +} +nav a:link { color: #FFFFFF; } +nav a:visited { color: #EAEAEA; } +nav a:hover { color: #869DC7; +background-color: #EAEAEA; } +footer { font-size: 70%; + text-align: center; + padding: 10px; + background-color: #869DC7; + clear: both; +} + -- cgit v1.2.3