aboutsummaryrefslogtreecommitdiffstats
path: root/static/css/index.css
blob: 6a2d5736baa06c0b8bb1454f87bdfbefa46341cc (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
/*
 * skaschool website custom css
 * index.css
 *
 * Weitian LI
 */

.skaschool-home {
    background: url(../images/skaschool-bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/skaschool-bg.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/skaschool-bg.jpg', sizingMethod='scale')";
}

.masthead {
    color: #CCCCCC;
    padding: 30px 15px;
    position: relative;
    text-align: center;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.masthead h1 {
    color: #EEEEEE;
}
.masthead .btn-outline-inverse {
    margin: 10px;
}
.masthead-links {
    list-style: none outside none;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 15px;
    text-align: center;
}
.masthead-links li {
    display: inline;
}
.masthead-links li + li {
    margin-left: 10px;
}
.masthead-links a {
    color: #EEEEEE;
}
@media (min-width: 768px) {
  .masthead {
      padding-top: 80px;
      padding-bottom: 140px;
      text-align: left;
  }
  .masthead .lead {
      font-size: 20px;
      margin-right: 25%;
  }
  .masthead .btn-outline-inverse {
      font-size: 18px;
      margin: 18px 5px 18px 0;
      padding: 16px 20px;
      width: auto;
  }
  .masthead-links {
      padding: 0;
      text-align: left;
  }
}

/* Outline button for use within the docs */
.btn-outline {
    color: #563d7c;
    background-color: #FFFFFF;
    border-color: #e5e5e5;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    color: #fff;
    background-color: #563d7c;
    border-color: #563d7c;
}

/* Inverted outline button (white on dark) */
.btn-outline-inverse {
    color: #E5E5E5;
    background-color: transparent;
    border-color: #E5E5E5;
}
.btn-outline-inverse:hover,
.btn-outline-inverse:focus,
.btn-outline-inverse:active {
    color: #252525;
    text-shadow: none;
    background-color: #E5E5E5;
    border-color: #E5E5E5;
}

footer {
    color: #CCCCCC;
}