Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.css « static « multilingual « examples - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 713c7d2726b799cb0186d95bf1d890fad2ac4dfd (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
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    max-width: 800px;
    margin: 0 auto;

    color: #333;
}

.clear { clear: both; }


#language-menu, #main-menu, #title, #subtitle {
    font-family: Georgia;
    font-variant: small-caps;
}

.copy-left {
    display: inline-block;
    text-align: right;
    margin: 0px;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

/* Language Menu */

#language-menu { float: right; }
#language-menu a {
    display: block;
    padding: 8px 10px;
    width: 100px;

    transition: border-left 0.3s ease-in-out;
    border-left: 2px solid #FFF;
}
#language-menu a:hover { border-left: 2px solid #A00; }
#language-menu a, #language-menu a:visited {
    color: #333;
}

/* Main Menu */

#main-menu {
    margin-top: 20px;
    border-left: 2px solid #A00;
    padding-left: 10px;
}

#main-menu a {
    float: left;
    width: 100px;
    text-align: center;

    padding: 5px 10px;
    margin: 0;

    text-decoration: none;
    font-size: 18px;

    transition: border-bottom 0.3s ease-in-out;
    border-bottom: 2px solid #FFF;
}

#main-menu a:hover {
    border-bottom: 2px solid #A00;
}

/* Content */

article h3 {
    margin-bottom: 3px;
}
.post-meta {
    color: #888;
    margin-bottom: 10px;
}

/* Footer */

#footer {
    margin: 50px 0;
    text-align: center;
}