Changeset - d0bbb39748cf
[Not reviewed]
0 1 0
Nick Seidenman (N6) - 8 years ago 2017-01-18 03:49:00
n6151h@gmail.com
A few more tweaks to app.css, removing stuff that makes things look less like the wooden site.
1 file changed with 4 insertions and 8 deletions:
0 comments (0 inline, 0 general)
static/src/pyconau2017/css/app.css
Show inline comments
...
 
@@ -202,97 +202,97 @@ audio:not([controls]) {
 
/**
 
 * 1. Set default font family to sans-serif.
 
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 
 *    user zoom.
 
 */
 
html {
 
  font-family: sans-serif;
 
  /* 1 */
 
  -ms-text-size-adjust: 100%;
 
  /* 2 */
 
  -webkit-text-size-adjust: 100%;
 
  /* 2 */
 
}
 

	
 
/**
 
 * Remove default margin.
 
 */
 
body {
 
  margin: 0;
 
}
 

	
 
/* ==========================================================================
 
   Links
 
   ========================================================================== */
 
/**
 
 * Address `outline` inconsistency between Chrome and other browsers.
 
 */
 
a:focus {
 
  outline: none;
 
}
 

	
 
/**
 
 * Improve readability when focused and also mouse hovered in all browsers.
 
 */
 
a:active,
 
a:hover {
 
  outline: 0;
 
}
 

	
 
/* ==========================================================================
 
   Typography
 
   ========================================================================== */
 
/**
 
 * Address variable `h1` font-size and margin within `section` and `article`
 
 * contexts in Firefox 4+, Safari 5, and Chrome.
 
 */
 
h1 {
 
  font-size: 2em;
 
  margin: 0.67em 0;
 
  /* margin: 0.67em 0; */
 
}
 

	
 
/**
 
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 
 */
 
abbr[title] {
 
  border-bottom: 1px dotted;
 
}
 

	
 
/**
 
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 
 */
 
b,
 
strong {
 
  font-weight: bold;
 
}
 

	
 
/**
 
 * Address styling not present in Safari 5 and Chrome.
 
 */
 
dfn {
 
  font-style: italic;
 
}
 

	
 
/**
 
 * Address differences between Firefox and other browsers.
 
 */
 
hr {
 
  box-sizing: content-box;
 
  height: 0;
 
}
 

	
 
/**
 
 * Address styling not present in IE 8/9.
 
 */
 
mark {
 
  background: #ff0;
 
  color: #000;
 
}
 

	
 
/**
 
 * Correct font family set oddly in Safari 5 and Chrome.
 
 */
 
code,
 
kbd,
 
pre,
 
samp {
 
  font-family: monospace, serif;
...
 
@@ -587,110 +587,106 @@ body {
 
}
 

	
 
@media (min-width: 25em) {
 
  body {
 
    font-size: 2.2vw;
 
  }
 
}
 

	
 
@media (min-width: 64em) {
 
  body {
 
    font-size: 2vw;
 
  }
 
}
 

	
 
@media (min-width: 80em) {
 
  body {
 
    font-size: 28px;
 
  }
 
}
 

	
 
.lede {
 
  margin: 30px 0;
 
  margin: 1.875rem 0;
 
  font-size: 4.2vw;
 
}
 

	
 
@media (min-width: 25em) {
 
  .lede {
 
    font-size: 3vw;
 
  }
 
}
 

	
 
@media (min-width: 64em) {
 
  .lede {
 
    font-size: 2vw;
 
    margin: 3.375rem 0;
 
  }
 
}
 

	
 
@media (min-width: 80em) {
 
  .lede {
 
    font-size: 28px;
 
  }
 
}
 

	
 

	
 
a {
 
  color: #337ab7;
 
  text-decoration: none;
 
  border-bottom: 1px solid #3ab1c9;
 
  text-decoration: none  !important;
 
  /* border-bottom: 1px solid #3ab1c9; */
 
  transition: color 300ms;
 
}
 

	
 
a:hover, a:focus, a:active {
 
  color: #3ab1c9;
 
}
 

	
 
ul,
 
ol {
 
  padding: 0;
 
  /* margin: 0; */
 
}
 

	
 

	
 
ul > li,
 
ol > li {
 
  list-style-position: outside;
 
  margin-left: 1em;
 
}
 

	
 
blockquote {
 
  margin-left: 0;
 
  padding-left: 20px;
 
  padding-left: 1.25rem;
 
  font-style: italic;
 
  border-left: 1px solid #3ab1c9;
 
}
 

	
 
table th {
 
  font-family: "Titillium Web", sans-serif;
 
  font-weight: 900;
 
  text-transform: uppercase;
 
}
 

	
 
.track-name {
 
  margin-top: 0;
 
  margin-bottom: 0;
 
  font-weight: bold;
 
  text-transform: none;
 
}
 

	
 
table th, table td {
 
  padding: 10px;
 
  padding: 0.625rem;
 
  text-align: left;
 
}
 

	
 
table th:not(:first-of-type), table td:not(:first-of-type) {
 
  border-left: 1px solid #0c486c;
 
}
 

	
 
table tr:not(:last-of-type) {
 
  border-bottom: 1px solid #0c486c;
 
}
 

	
 
table.alt th {
 
  font-family: "Titillium Web", sans-serif;
 
  font-weight: 900;
 
  text-transform: uppercase;
 
}
 

	
0 comments (0 inline, 0 general)