Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 2.43 KB | None | 0 0
  1. /* Colors */
  2. $bodyTextColor: #666;
  3. $linkColor: #0669de;
  4. $inputBorderColor: #ccc;
  5. $headerColor: #002a4c;
  6.  
  7. /* Fonts */
  8. $opensans-font:"http://fonts.googleapis.com/css?family=Open+Sans";
  9.  
  10. /* Images */
  11. $logoGlobocom: "/assets/images/logo-globocom.png";
  12.  
  13. @import url($opensans-font);
  14.  
  15. #content {
  16.   padding-left: 1em;
  17.   padding-right: 1em;
  18. }
  19.  
  20. body {
  21.   font-family: 'Open Sans', sans-serif;
  22.   color: $bodyTextColor;
  23.   font-size: 1em;
  24.   letter-spacing: -1px;
  25.   margin: 0;
  26. }
  27.  
  28. .title {
  29.   font-size: 2.5em;
  30. }
  31.  
  32. .termos {
  33.   text-align: center;
  34.   margin-bottom: 1em;
  35. }
  36.  
  37. @mixin globo-img {
  38.   width: 72px;
  39.   height: 17px;
  40.   display: inline-block;
  41.   background-image: url($logoGlobocom);
  42.   vertical-align: middle;
  43. }
  44.  
  45. .subtitle {
  46.   font-size: 0.8em;
  47.   margin-left: 19.5em;
  48.   .globoimg {
  49.     @include globo-img;
  50.   }
  51. }
  52.  
  53. .footer-globocom {
  54.   margin-top: 0.5em;
  55.   text-align: right;
  56. }
  57.  
  58. .footer-globocom .info {
  59.   background-color: #ddd;
  60.   border-radius: 4em;
  61.   padding-left: 0.6em;
  62.   padding-right: 0.6em;
  63.   font-weight: bold;
  64.   margin-left: 4px;
  65.   font-size: 0.9em;
  66. }
  67.  
  68. .subtitle.cadastro {
  69.   margin-top: -2.5em;
  70.   margin-left: 8.5em;
  71. }
  72.  
  73. .footer-globocom .globoimg {
  74.   @include globo-img;
  75. }
  76.  
  77. .button {
  78.   width: 100%;
  79.   height: 2.5em;
  80.   font-size: 1em;
  81.   padding-top: 0.2em;
  82.   padding-bottom: 0.2em;
  83. }
  84.  
  85. .separator {
  86.   width:100%;
  87.   text-align:center;
  88.   border-bottom: 1px solid #ddd;
  89.   line-height:0.3em;
  90.   margin:1em 0 2em;
  91.   span {
  92.     background:#fff;
  93.     padding:0 10px;
  94.     font-size: 0.8em;
  95.   }
  96. }
  97.  
  98. form {
  99.   width: 100%;
  100. }
  101.  
  102. label .link {
  103.   color: $linkColor;
  104. }
  105.  
  106. .header {
  107.   background-color: $headerColor;
  108.   color: white;
  109.   font-size: 2em;
  110.   text-align: center;
  111.   line-height: 50px;
  112. }
  113.  
  114. input[type='text'] {
  115.   height: 30px;
  116.   margin-bottom: 10px;
  117.   border-radius: 3px;
  118.   border: 1px solid $inputBorderColor;
  119.   font-size: 1em;
  120.   padding-top: 0.2em;
  121.   padding-bottom: 0.2em;
  122.   width: 100%;
  123. }
  124.  
  125. /* Ipad - 752px */
  126. @media (min-width: 47em) {
  127.   form {
  128.     width: 40%
  129.   }
  130. }
  131.  
  132. @media (min-width: 68em) {
  133. }
  134. @media (min-width: 82em) {
  135. }
  136. @media (min-width: 100em) {
  137. }
  138.  
  139. /* iPhone - 320px*/
  140. @media screen and (max-width: 25em) {
  141.   .header {
  142.     height: 56px;
  143.   }
  144. }
  145.  
  146. /* Desktop screens  */
  147. @media only screen and (min-width: 64em) {
  148.   .header {
  149.     height: 80px;
  150.   }
  151. }
  152.  
  153. /* Larger Desktop */
  154. @media only screen and (min-width: 75em) {
  155.   form {
  156.     width: 40%;
  157.   }
  158. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement