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

style.css « midnight « ArticleView « data - github.com/jangernert/FeedReader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8f35dc6d6a1eeda9eccc1237e0cd5f1e75ee6c9 (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
html, body {
    margin: 0;
    padding: 0;
    width: auto;
}
a, body {
color: #ECECEC;

}

.unselectable {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    user-select: none;
}

a {
    text-decoration: none;
}

a:hover {
    opacity:0.7;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #2E3440;
}

img {
    width: 100%;
}

p {
    text-align: justify;
}

#feedreader-container {
    margin: 10px;
    padding: 20px;
}
#feedreader-container article header {
    font-family: LyonText,Georgia,serif;
    margin-bottom: 50px;
}

#feedreader-container article header #title {
    font-size: 3em;
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 5px;
    margin-top: 0;
}

#feedreader-container article header #author {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 0.8em;
    margin-bottom: 5px;
    margin-top: 0;
    color: #AFAFAF;
}


#feedreader-container article #content {
    margin: 5px;
}