summaryrefslogtreecommitdiffstats
path: root/static/css/responsive.css
blob: 0bb9f07bed08651d97123030872e31b942eee39d (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
@media (max-width: 870px) {
    header {
        text-align: center;
    }

    #logo, nav, .overview div {
        float: none !important;
        width: 100% !important;
    }

    .about {
        margin-top: 3em;
        margin-left: 0 !important;
        text-align: left;
    }
}

@media (max-width: 500px) {
    .service-row .row-fluid div {
        float: none;
    }

    #services .img {
        text-align: center;
    }

    #services .desc, #services .img {
        width: 100%;
    }
}

@media (min-width: 500px) and (max-width: 767px) {
    .service-row .row-fluid div {
        float: left;
    }

    .service-row .row-fluid .img {
        width: 20% !important;
    }

    .service-row .row-fluid .desc {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .service-row {
        margin: 0;
    }
}

@media (max-width: 527px) {
    nav a {
        display: block;
        line-height: 1.2em;
        margin: 0.5em;
    }
}