summaryrefslogtreecommitdiff
path: root/files/webapp/stylesheets/tail.scss
blob: e7b362d71fcf21d3bd4bb7d5c8c70ab2376745a9 (plain)
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
//
// MASTHEAD
//

#masthead {
  background: 50% 50% url(/img/rainbow-masthead-small.png) no-repeat;
  height: 96px;
  border-bottom: 4px solid black;
  .title {
    width: 460px;
    margin: 0 auto;
    padding: 0;
    font-size: 26px;
    line-height: 96px;
  }
}

body.home #masthead {
  background: 50% 50% url(/img/rainbow-masthead.png) no-repeat;
  height: 256px;
  margin: 0;
  border-bottom: 0;
  .text {
    width: 360px;
    margin: 0 auto;
    padding-top: 80px;
  }
  .title {
    font-size: 80px;
    line-height: 60px;
    color: #000;
    margin: 0;
    font-weight: bold;
    width: auto;
  }
  .tagline {
    padding-left: 5px;
    margin-top: 6px;
    font-size: 18px;
    line-height: 24px;
  }
}

//
// HOME PAGE STYLES
//

body.home {
  .b {
    font-weight: bold;
  }
  h1 {
    margin-top: 1em;
  }
  .home-buttons .box {
    margin-bottom: 1em;
  }
}

body.home {
  .navcontainer {
    overflow: hidden;
  }
  .nav {
    width: 1000px;
    max-width: 1000px;
    margin: 0 auto;

    //@include border-bottom-radius(4px);
    //background: #444;
    //border-top: 2px solid black;
    //border-bottom: 2px solid black;
    padding: 10px;
    padding-left: 26px;
    font-weight: bold;
    a {
      color: #fff;
      &:hover {
        color: #000;
        //text-decoration: underline;
      }
    }
    margin-bottom: 0;
  }
  .navheader {
    background: #444;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    margin-bottom: 1em;
  }
}


//
// SMALL SCREEN
//

@media (max-width: 767px) {
  body.home #masthead {
    //margin-left: -20px;
    //margin-right: -20px;
    background: 40% 50% url(/img/rainbow-masthead-small.png) no-repeat;
    height: 96px;
    .tagline {
      display: none;
    }
    .text {
      margin: 0 auto;
      padding: 0;
      width: 190px;
    }
    .title {
      font-size: 42px;
      line-height: 96px;
    }
  }
}