aimementoring / website

AIME Mentoring Website
1 stars 0 forks source link

CSS: Review global body styles #627

Closed github-actions[bot] closed 4 years ago

github-actions[bot] commented 4 years ago

CSS: Review global body styles

https://github.com/aimementoring/website/blob/d6d0ed9e6a1d9676677bb91abe31fd1db3554630/pages/_app.scss#L18


// @todo CSS: Refactor global href styles
// we shouldn't be setting color here, but could have some smart global styles ...

a {
  color: $purple;
  font-weight: bold;
  letter-spacing: 0.001em;
}

img {
  max-width: 100%;
}

// @todo CSS: Review global body styles 
// There are some extra rules here that probably aren't needed at all

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 100%;
  text-rendering: optimizeLegibility;
  letter-spacing: -.35px;
  font-weight: 300;
}

html {
  overflow-y: scroll;
}
 No newline at end of file
ew file mode 100644
ndex 000000000..553177e54
++ b/pages/_document.js

e188ed3b7054b36155ac84cc3dff4d6176a89e13