landing.scss 799 Bytes
Newer Older
mntmn's avatar
mntmn committed
1
2
3
@import "vars";

#landing-header {
4
5
6
7
8
9
    background-color: white;
    height: 64px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
mntmn's avatar
mntmn committed
10
11
}

12
13
14
15
16
17
18
19
20
#landing {
    margin-top: 100px;
    
    section {
        margin-left: 300px;
        
        > * {
            max-width: 600px;
        }
mntmn's avatar
mntmn committed
21
22
23
24
    }
}

.footer {
25
26
27
  margin-left: 300px;
  margin-top: 100px;
  margin-bottom: 100px;
mntmn's avatar
mntmn committed
28
29
}

mntmn's avatar
mntmn committed
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@media screen and (max-width: 1000px) {
    #landing {
        section {
            margin-left: 20px;
            margin-right: 20px;
        }
    }
    .footer {
        margin-left: 20px;
        margin-right: 20px;
    }

    .header-right {
        right: auto;
        padding-left: 10px;
        padding-right: 20px;
        padding-top: 80px;
    }

    #folder-wrapper {
        padding-top: 128px;
    }
}