Welcome to my Compass and Sass Video Tutorial. I’ll cover all of the following topics : Variables, Cross Browser Solutions, Installation, Partials, Normalization, Base Site Styling, Mixins, Functions, Nesting, Color Functions, Sharing Element Properties, Compass CSS3 Mixins, CSS3 Transforms, If, Else, For Loops, Spriting and more. All of the code from the video follows below. I hope this helps.
If you like videos like this, it helps to tell Google with a click here [googleplusone]
Code From the Video
config.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
require 'compass/import-once/activate' # Require any additional compass plugins here. # require "plugin name" # Set this to the root of your project when deployed: http_path = "../" css_dir = "stylesheets" sass_dir = "sass" images_dir = "images" javascripts_dir = "javascripts" # You can select your preferred output style here (can be overridden via the command line): # output_style = :expanded or :nested or :compact or :compressed output_style = :expanded # To enable relative paths to assets via compass helper functions. Uncomment: # relative_assets = true # To disable debugging comments that display the original location of your selectors. Uncomment: # line_comments = false # If you prefer the indented syntax, you might want to regenerate this # project again passing --syntax sass, or you can uncomment this: # preferred_syntax = :sass # and then run: # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass |
_variables.scss
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
// Some people like naming based on where the color // will be used while others prefer names that // represent the color $red: #FF0000; $white: #FFFFFF; $gray: #808080; $pink: #FFCBDB; $brown: #964B00; $orange: #FF7F00; $yellow: #FFFF00; $green: #00FF00; $cyan: #00FFFF; $blue: #0000FF; $violet: #7F00FF; $black: #000000; $duke-blue: #001A57; $blue-gray: #6699CC; $main-green: #00647D; $alice-blue: #F0F8FF; $ash-gray: #B2BEB5; /* You can define a default that is used only if a value isn't assigned any place else $default-text-color: $black !default; */ |
_base.scss
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
body { font-family: Arial, Helvetica, sans-serif; font-size: 1em; background: $gray; line-height: 1em; // We are defining the text color with a mixin @include default-text-color($black); } #wrapper { background: $white; margin: 0 auto; max-width: 800px; } // Fixes overlapping issues // Makes the rendered box elements padding, borders, etc. // fit into the width * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } article p a { color: $blue; &:hover, &:focus { color: $duke-blue; } &:visited { color: $blue-gray; } } |
_mixins.scss
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// Mixins are functions that we can pass values into @mixin default-text-color($tc){ color: $tc; } /* You can define a default value as well if an attribute isn't passed @mixin default-text-color($tc: $black){ color: $tc; } */ |
_normalize.scss
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 |
/* normalize-scss 3.0.2+normalize.3.0.2 | MIT/GPLv2 License | bit.ly/normalize-scss */ // Variables and Imports // // If you have a base partial (or equivalent), you should move these lines to // that file. NOTE: Edit the lines to remove "!default". // @see http://compass-style.org/help/tutorials/best_practices/ // ============================================================================= // These 3 variables are copies of ones used in Compass' Vertical Rhythm module. // The font size set on the root html element. $base-font-size: 16px !default; // The base line height determines the basic unit of vertical rhythm. $base-line-height: 24px !default; // The length unit in which to output vertical rhythm values. // Supported values: px, em, rem. $rhythm-unit: 'em' !default; // Note: This project also makes use of variables from Compass' support // module. Documentation for this can be found on the wiki at: // https://github.com/JohnAlbin/normalize-scss/wiki // Set this to true to force CSS output to exactly match normalize.css. $strict-normalize: true !default; // The default font family. $base-font-family: sans-serif !default; // The font sizes for h1-h6. $h1-font-size: 2 * $base-font-size !default; $h2-font-size: 1.5 * $base-font-size !default; $h3-font-size: 1.17 * $base-font-size !default; $h4-font-size: 1 * $base-font-size !default; $h5-font-size: 0.83 * $base-font-size !default; $h6-font-size: 0.67 * $base-font-size !default; // The amount lists and blockquotes are indented. $indent-amount: 40px !default; // After the default variables are set, import the required Compass partials. @import "compass/support"; @import "compass/css3/box-sizing"; @import "compass/typography/vertical_rhythm"; @if not $strict-normalize or support-legacy-browser(ie, "7") { /** * Establish a vertical rhythm unit using $base-font-size, $base-line-height, * and $rhythm-unit variables. Also, correct text resizing oddly in IE 6/7 when * body `font-size` is set using `em` units. */ @include establish-baseline(); } /** * 1. Set default font family to sans-serif. * 2. Prevent iOS text size adjust after orientation change, without disabling * user zoom. */ html { font-family: $base-font-family; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ // Show a background image that can be used to debug your alignments. // @include debug-vertical-alignment(); } /** * Remove default margin. */ body { margin: 0; } /* HTML5 display definitions ========================================================================== */ /** * Correct `block` display not defined for any HTML5 element in IE 8/9. * Correct `block` display not defined for `details` or `summary` in IE 10/11 * and Firefox. * Correct `block` display not defined for `main` in IE 11. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } /** * 1. Correct `inline-block` display not defined in IE 8/9. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */ audio, canvas, progress, video { @if support-legacy-browser(ie, "9") { display: inline-block; /* 1 */ @if support-legacy-browser(ie, "7") { *display: inline; *zoom: 1; } } vertical-align: baseline; /* 2 */ } /** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; } @if support-legacy-browser(ie, "10") { /** * Address `[hidden]` styling not present in IE 8/9/10. */ [hidden] { display: none; } } /** * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. */ template { display: none; } /* Links ========================================================================== */ @if support-legacy-browser(ie, "10") { /** * Remove the gray background color from active links in IE 10. */ a { background-color: transparent; } } /** * Improve readability when focused and also mouse hovered in all browsers. */ a:active, a:hover { outline: 0; } /* Text-level semantics ========================================================================== */ /** * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */ abbr[title] { border-bottom: 1px dotted; } /** * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */ b, strong { font-weight: bold; } @if not $strict-normalize or support-legacy-browser(ie, "7") { /** * Set 1 unit of vertical rhythm on the top and bottom margin. */ blockquote { @include output-rhythm(margin, rhythm(1) $indent-amount); } } /** * Address styling not present in Safari and Chrome. */ dfn { font-style: italic; } /** * Address variable `h1` font-size and margin within `section` and `article` * contexts in Firefox 4+, Safari, and Chrome. */ h1 { /* Set the font-size and line-height while keeping a proper vertical rhythm. */ @if not $strict-normalize or support-legacy-browser(ie, "7") { @include adjust-font-size-to( $h1-font-size ); } @else { font-size: if($rhythm-unit == "px", $h1-font-size, ($h1-font-size / $base-font-size)#{$rhythm-unit}); } /* Set 1 unit of vertical rhythm on the top and bottom margins. */ @include leader(1, $h1-font-size); @include trailer(1, $h1-font-size); } @if not $strict-normalize or support-legacy-browser(ie, "7") { h2 { @include adjust-font-size-to( $h2-font-size ); @include leader(1, $h2-font-size); @include trailer(1, $h2-font-size); } h3 { @include adjust-font-size-to( $h3-font-size ); @include leader(1, $h3-font-size); @include trailer(1, $h3-font-size); } h4 { @include adjust-font-size-to( $h4-font-size ); @include leader(1, $h4-font-size); @include trailer(1, $h4-font-size); } h5 { @include adjust-font-size-to( $h5-font-size ); @include leader(1, $h5-font-size); @include trailer(1, $h5-font-size); } h6 { @include adjust-font-size-to( $h6-font-size ); @include leader(1, $h6-font-size); @include trailer(1, $h6-font-size); } } @if support-legacy-browser(ie, "9") { /** * Address styling not present in IE 8/9. */ mark { background: #ff0; color: #000; } } @if not $strict-normalize or support-legacy-browser(ie, "7") { /** * Set 1 unit of vertical rhythm on the top and bottom margin. */ p, pre { @include output-rhythm(margin, rhythm(1) 0); } } /** * Address inconsistent and variable font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } @if not $strict-normalize or support-legacy-browser(ie, "7") { /* Lists ========================================================================== */ /** * Address margins set differently in IE 6/7. */ dl, menu, ol, ul { @include output-rhythm(margin, rhythm(1) 0); } @if not $strict-normalize { /** * Turn off margins on nested lists. */ ol, ul { ol, ul { margin: 0; } } } dd { margin: 0 0 0 $indent-amount; } /** * Address paddings set differently in IE 6/7. */ menu, ol, ul { padding: 0 0 0 $indent-amount; } } @if support-legacy-browser(ie, "7") { /** * Correct list images handled incorrectly in IE 7. */ nav ul, nav ol { list-style: none; list-style-image: none; } } /* Embedded content ========================================================================== */ @if support-legacy-browser(ie, "10") { /** * Remove border when inside `a` element in IE 8/9/10. */ img { border: 0; @if support-legacy-browser(ie, "7") { /* Improve image quality when scaled in IE 7. */ -ms-interpolation-mode: bicubic; } } } /** * Correct overflow not hidden in IE 9/10/11. */ svg:not(:root) { overflow: hidden; } /* Grouping content ========================================================================== */ @if support-legacy-browser(ie, "9") or support-legacy-browser(safari, "6") { /** * Address margin not present in IE 8/9 and Safari. */ figure { @include output-rhythm(margin, rhythm(1) $indent-amount); } } /** * Address differences between Firefox and other browsers. */ hr { @include box-sizing(content-box); height: 0; } /** * Contain overflow in all browsers. */ pre { overflow: auto; } /** * Address odd `em`-unit font size rendering in all browsers. */ code, kbd, pre, samp { font-family: monospace, monospace; @if support-legacy-browser(ie, "6") { _font-family: 'courier new', monospace; } font-size: 1em; } /* Forms ========================================================================== */ /** * Known limitation: by default, Chrome and Safari on OS X allow very limited * styling of `select`, unless a `border` property is set. */ @if support-legacy-browser(ie, "7") { /** * Correct margin displayed oddly in IE 6/7. */ form { margin: 0; } } /** * 1. Correct color not being inherited. * Known issue: affects color of disabled elements. * 2. Correct font properties not being inherited. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. * 4. Address `font-family` inconsistency between `textarea` and other form in IE 7 * 5. Improve appearance and consistency with IE 6/7. */ button, input, optgroup, select, textarea { color: inherit; /* 1 */ font: inherit; /* 2 */ margin: 0; /* 3 */ @if support-legacy-browser(ie, "7") { *font-family: $base-font-family; /* 4 */ *vertical-align: middle; /* 5 */ } } /** * Address `overflow` set to `hidden` in IE 8/9/10/11. */ button { overflow: visible; } /** * Address inconsistent `text-transform` inheritance for `button` and `select`. * All other form control elements do not inherit `text-transform` values. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. * Correct `select` style inheritance in Firefox. */ button, select { text-transform: none; } /** * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` * and `video` controls. * 2. Correct inability to style clickable `input` types in iOS. * 3. Improve usability and consistency of cursor style between image-type * `input` and others. * 4. Remove inner spacing in IE 7 without affecting normal text inputs. * Known issue: inner spacing remains in IE 6. */ button, html input[type="button"], /* 1 */ input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ @if support-legacy-browser(ie, "7") { *overflow: visible; /* 4 */ } } /** * Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } /** * Remove inner padding and border in Firefox 4+. */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /** * Address Firefox 4+ setting `line-height` on `input` using `!important` in * the UA stylesheet. */ input { line-height: normal; } @if support-legacy-browser(ie, "10") { /** * It's recommended that you don't attempt to style these elements. * Firefox's implementation doesn't respect box-sizing, padding, or width. * * 1. Address box sizing set to `content-box` in IE 8/9/10. * 2. Remove excess padding in IE 8/9/10. * 3. Remove excess padding in IE 7. * Known issue: excess padding remains in IE 6. */ input[type="checkbox"], input[type="radio"] { @include box-sizing(border-box); /* 1 */ padding: 0; /* 2 */ @if support-legacy-browser(ie, "7") { *height: 13px; /* 3 */ *width: 13px; /* 3 */ } } } /** * Fix the cursor style for Chrome's increment/decrement buttons. For certain * `font-size` values of the `input`, it causes the cursor style of the * decrement button to change from `default` to `text`. */ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Address `appearance` set to `searchfield` in Safari and Chrome. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome * (include `-moz` to future-proof). */ input[type="search"] { -webkit-appearance: textfield; /* 1 */ @include box-sizing(content-box); /* 2 */ /** * Remove inner padding and search cancel button in Safari and Chrome on OS X. * Safari (but not Chrome) clips the cancel button when the search input has * padding (and `textfield` appearance). */ &::-webkit-search-cancel-button, &::-webkit-search-decoration { -webkit-appearance: none; } } /** * Define consistent border, margin, and padding. */ fieldset { margin: 0 2px; /* Apply borders and padding that keep the vertical rhythm. */ border-color: #c0c0c0; @include apply-side-rhythm-border(top, $width: 1px, $lines: 0.35 ); @include apply-side-rhythm-border(bottom, $width: 1px, $lines: 0.65 ); @include apply-side-rhythm-border(left, $width: 1px, $lines: 0.625); @include apply-side-rhythm-border(right, $width: 1px, $lines: 0.625); } /** * 1. Correct `color` not being inherited in IE 8/9/10/11. * 2. Remove padding so people aren't caught out if they zero out fieldsets. * 3. Correct alignment displayed oddly in IE 6/7. */ legend { @if support-legacy-browser(ie, "11") { border: 0; /* 1 */ } padding: 0; /* 2 */ @if support-legacy-browser(ie, "7") { *margin-left: -7px; /* 3 */ } } /** * Remove default vertical scrollbar in IE 8/9/10/11. */ textarea { overflow: auto; } /** * Don't inherit the `font-weight` (applied by a rule above). * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */ optgroup { font-weight: bold; } /* Tables ========================================================================== */ /** * Remove most spacing between table cells. */ table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } |
index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
<!DOCTYPE HTML> <html lang="en"> <head> <meta charset="UTF-8"> <title>SASS Tutorial</title> <link rel="stylesheet" href="stylesheets/styles.css"> </head> <body> <div id="wrapper"> <header id="banner"> <img src="./images/nttlogo.png" id="logo"> <span id="logo-text">New Think Tank</span> <input type="text" id="search-input"> <a href="#" id="search-button">Search</a> </header> <nav id="horz-nav"> <p> <a href="#">Home</a> <a href="#">About</a> <a href="#">Directions</a> <a href="#">Contact</a> <a href="#">Calendar</a> </p> </nav> <div id="sidebar-left"> <nav id="vert-nav"> <ul> <li class="left-sidebar-links"><a href="#">Html</a></li> <li class="left-sidebar-links"><a href="#">Css</a></li> <li class="left-sidebar-links"><a href="#">JavaScript</a></li> <li class="left-sidebar-links"><a href="#">Php</a></li> <li class="left-sidebar-links"><a href="#">Mysql</a></li> <li class="left-sidebar-links"><a href="#">Android</a></li> <li class="left-sidebar-links"><a href="#">Rails</a></li> <li class="left-sidebar-links"><a href="#">NodeJS</a></li> <li class="left-sidebar-links"><a href="#">Laravel</a></li> <li class="left-sidebar-links"><a href="#">Marketing</a></li> <li class="left-sidebar-links"><a href="#">Java</a></li> <li class="left-sidebar-links"><a href="#">Lua</a></li> <li class="left-sidebar-links"><a href="#">Python</a></li> <li class="left-sidebar-links"><a href="#">Games</a></li> </ul> </nav> </div> <!-- End of Sidebar Left --> <div id="sidebar-right"> <div class="right-sidebar-item"> <span class="right-sidebar-title">Programming Frameworks</span> <img class="right-sidebar-image" src="#" alt="Programming Frameworks"> </div> <div class="right-sidebar-item"> <span class="right-sidebar-title">Is Laravel for Real?</span> <img class="right-sidebar-image" src="#" alt="Laravel"> </div> <div class="right-sidebar-item"> <span class="right-sidebar-title">Ruby off the Rails</span> <img class="right-sidebar-image" src="#" alt="Rails"> </div> <div class="right-sidebar-item"> <span class="right-sidebar-title">JavaScript is Hot Again</span> <img class="right-sidebar-image" src="#" alt="JavaScript"> </div> </div> <!-- End of Sidebar Right --> <main id="content"> <section> <h2 id="main-title">The Hottest Programming Frameworks</h2> <article> <img id="feature-image" src="./images/featured-image.png" alt="Featured Image"> <p>Lorem ipsum dolor sit amet, <a href="http://en.wiktionary.org/wiki/consectetur">consectetur</a> adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud</p> <p>exercitation ullamco laboris <a href="http://keais.com/nisi-ut-aliquip-ex-ea/">nisi ut aliquip</a> ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p> <p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut <a href="http://nwalsh.com/comp.fonts/FAQ/cf_36.htm">labore et dolore</a> magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure</p> <p>dolor in reprehenderit in <a href="http://refaktorthemes.com/blocks-demo/node/15">voluptate velit esse</a> cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt</p> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt</p> <p>ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in nt</p> <div id="riddle">A dad and his son were riding their bikes and crashed. Two ambulances came and took them to different hospitals. The man’s son was in the operating room and the doctor said, “I can’t operate on you. You’re my son.” How is that possible?</div> <div id="riddle-answer">The doctor is his mom!</div> <div class="icons"> <div class="icons-clock"></div> <div class="icons-diary"></div> <div class="icons-printer"></div> <div class="icons-weather"></div> </div> <div class='baseball-stats'> <table cellspacing='0'> <thead> <tr class='odd'> <th>Player</th> <th>Avg</th> <th>RBIs</th> <th>HRs</th> </tr> </thead> <tbody> <tr class='even'> <th>Barry Bonds</th> <td>.298</td> <td>1996</td> <td>762</td> </tr> <tr class='odd'> <th>Babe Ruth</th> <td>.342</td> <td>2214</td> <td>714</td> </tr> <tr class='even'> <th>Hank Aaron</th> <td>.305</td> <td>2297</td> <td>755</td> </tr> </tbody> </table> </div> </article> </section> </main> <footer> <address>derekbanas@verizon.net</address> <small>copyright 2015</small> </footer> </div> <!-- End of Wrapper --> </body> </html> |
styles.scss
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
@import "compass"; @import "partials/variables"; @import "partials/normalize"; @import "partials/mixins"; @import "partials/base"; @import "compass/css3"; #banner{ padding: 10px; padding-bottom: 0px; } #logo { width: 24px; height: auto; } #logo-text { vertical-align: 50%; color: #00647D; font-weight: bold; } #search-input{ width: 302px; vertical-align: 50%; } #search-button{ vertical-align: 80%; background-color: #00647D; padding: 5px 12px; font: 13px sans-serif; text-decoration: none; border: 1px solid #000; border-color: #aaa #444 #444 #aaa; color: #FFF; } #horz-nav { background-color: #00647D; max-width: 800px; height: 35px; margin-bottom: 10px; } #horz-nav p { padding-top: 10px; } #horz-nav p a{ text-decoration: none; color: #FFF; padding-left: 10px; } #horz-nav p a:hover{ color: $orange; } #sidebar-left{ float: left; width: 109px; padding-left: 10px; } // You'll want to define navigation width for items in the ul #vert-nav ul{ list-style-type: none; margin: 0; padding: 0; line-height: 1.7em; width: 80px; } #vert-nav ul li a{ text-decoration: none; color: #00647D; } #sidebar-right{ float: right; width: 213px; } .right-sidebar-title{ color: #00647D; font-weight: bold; } #content { margin: 0px 213px 0px 109px; padding: 0px; } #content section h2{ margin-top: 0px; margin-bottom: 10px; color: #00647D; line-height: 1em; } #feature-image { height: auto; width: 100%; max-width: 440px; background: $gray; } .right-sidebar-image { height: 93px; width: 179px; background: $gray; margin: 12px 0px; } footer { clear: both; background: #00647D; color: #FFF; padding: 10px; } // Demonstrate nesting // & means the parent plus this element .left-sidebar-links { a { display: block; color: $main-green; opacity: .7; &:hover { opacity: 1; } } } .left-sidebar-links { border-bottom: 2px solid $main-green; &:last-child { border: none; } } // You can nest CSS properties as well .example-element { border: { top: 1px solid $blue; right: 1px solid $red; bottom: 1px solid $yellow; left: 1px solid $green; } } // @extend existing properties #riddle{ padding: 20px; background-color: $alice-blue; } #riddle-answer{ @extend #riddle; margin-top: 10px; } // Creating properties just so we can extend them %dotted-box { border: 2px dotted $duke-blue; margin: 10px 0px; } #riddle-answer{ @extend %dotted-box; } // Lighten a color // You can use darken in the same way .left-sidebar-links{ border-color: lighten($main-green, 70%); } // You can generate the 180 degree complement of a color #search-button:hover { background-color: complement($main-green); } // You can invert a color by sending the degree (0 - 360) #search-button:hover { background-color: adjust-hue($main-green, 90deg); } // Specify a background color for the <li> that is the // first child of #vert-nav ul and desaturate (darken) #vert-nav ul li:nth-child(1) { background-color: desaturate($orange, 80%); } // Saturate a color by a percent #vert-nav ul li:nth-child(2){ background-color: saturate($orange, 80%); } // Define transparence (0 to 1 Opaque) #vert-nav ul li:nth-child(3){ background-color: fade-out($orange, .5); } // Make a color more opaque (0 to 1 Opaque) #vert-nav ul li:nth-child(3){ background-color: fade-in($orange, .8); } // Define the RGB color #vert-nav ul li:nth-child(4){ background-color: rgba(0, 0, 200, 0.5); } // Mix 2 colors plus the percent of the first color #vert-nav ul li:nth-child(5){ background-color: mix($yellow, $white, 50%); } // Make the color passed grayscale #vert-nav ul li:nth-child(6){ background-color: grayscale($yellow); } /* adjust-color allows you to adjust red, green and blue : 0 to 255 hue : 0 to 359 saturation : 0 to 100 lightness : 0 to 100 alpha : 0 to 1 Either adjust RGB or HSL */ #vert-nav ul li:nth-child(7){ background-color: adjust-color($main-green, $red:0, $green:40, $blue:30); } #vert-nav ul li:nth-child(7){ background-color: adjust-color($main-green, $hue:30, $saturation:40, $lightness:30, $alpha:0.2); } // shade combines the color with a percent of black #vert-nav ul li:nth-child(8){ background-color: shade($yellow, 50%); } // tint combines the color with a percent of white #vert-nav ul li:nth-child(9){ background-color: tint($yellow, 50%); } // Rounds the border and adds a box shadow #riddle-answer { @include border-radius(5px); // Horizontal then vertical offset, blur, spread, color @include box-shadow(5px 5px 5px 2px gray); } // Color, horizontal then verical offset, blur amount #main-title{ @include text-shadow(rgba(blue, 0.2) 2px 2px 3px); } // Created for extension // Direction or left / right / top / bottom, color stops %main-green-gradient{ @include background-image(linear-gradient(left, $main-green 80%, $white)); } footer { @extend %main-green-gradient; } #horz-nav { @extend %main-green-gradient; } // Target the img with the given alt and change the src // and restore the proper size img[alt="Programming Frameworks"] { content: image-url('featured-image.png'); /* width: image-width('../images/featured-image.png'); height: image-height('../images/featured-image.png'); */ } // Use a Compass mixin to scale 2x horz & vert // Move horz & vert, rotate 45deg and perform multiple transforms #logo { @include scale(2,2); @include transform(translateX(700px) translateY(10px) scale(2,2) rotate(-45deg)); } // Add the compass drop shadow on all text in the p article p:nth-child(2){ @include filter(drop-shadow($gray 1px 1px 0px)); } // We can change properties based on conditions $riddle-color: gray; @if $riddle-color == blue { #riddle { background-color: $alice-blue; } } @else { #riddle { background-color: $ash-gray; } } // We can use for loops to change as we iterate $prct-yellow: 5%; @for $i from 1 through 14 { #vert-nav ul li:nth-child(#{$i}){ background-color: mix($yellow, $white, $prct-yellow); } $prct-yellow: $prct-yellow + 5% } // Spriting with Compass // Combines images in the provided folder into 1 image // to limit server requests // Define the directory for the images and it provides // the background image definition and location for use // by your elements @import "compass/utilities/sprites"; @import "icons/*.png"; @include all-icons-sprites; .icons { .clock { @include icons-sprite(clock);} .diary { @include icons-sprite(diary);} .printer { @include icons-sprite(printer);} .weather { @include icons-sprite(weather);} } .icons * { height: 64px; width: 64px; } @import "compass/utilities/tables"; .baseball-stats { table { $table-color: $black; @include table-scaffolding; // Define the inner border @include inner-table-borders(4px, $table-color); // Define the outer border @include outer-table-borders(4px, $duke-blue); // Handles table striping even row color, odd row color, intersection, header @include alternating-rows-and-columns($alice-blue, $ash-gray, $table-color, $white); width: 400px; } } |
Leave a Reply