aboutsummaryrefslogtreecommitdiffhomepage
path: root/css/style.css
blob: 812ccca7b5cdd520610afed03e5b23bf0f1e512c (plain) (blame)
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
body {
    color: #222222;
    font: 20px/1.3em Palatino,Georgia,serif;
    background-color: #F1F1F1;
    margin: 10px;
}

body.article {
    color: #222222;
    font: 20px/1.3em Palatino,Georgia,serif;
    background-color: #F1F1F1;
}

a, a:hover, a:visited {
    color: #000;
}
header {
    text-align: center;
}

#article header {
    text-align: left;
    border-bottom: 1px solid #222222;
}

#article header a {
    text-decoration: none;
}

#article article {
    border-bottom: 1px solid #222222;
}

.vieworiginal a {
    color: #888888;
    text-decoration: none;
}

#main, #article {
    margin: 0 auto;
}

#main ul#links {
    padding: 0;
    list-style-type: none;
    text-align: center;
}

#main ul#links li {
    display: inline;
}

#main ul#links li a.current {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #040707;
    color: #F1F1F1;
}

#links a, .backhome a{
    text-decoration: none;
    padding: 5px 10px;
}
#links a:hover, .backhome a:hover{
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #040707;
    color: #F1F1F1;
}

#main #entries {
    margin-top: 20px;
}

#main #entries .entrie {
    color: rgb(46, 46, 46);
    position:relative;
    background-color: #ffffff;
    padding: 15px;
    min-height: 6em;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow:  0px 0px 2px -1px #000;
    box-shadow:  0px 0px 2px -1px #000;
}

#main #entries .entrie h2 a {
    text-decoration: none;
}

#main #entries .entrie h2 a:hover {
    color: #F5BE00;
}

#main #entries .entrie .tools {
    position:absolute;
    bottom: 0;
    width: 100%;
    text-align: right;
    margin-left: -20px;
}

#main a.tool {
    text-decoration: none;
}

footer {
    text-align: right;
}