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

style.css « css « assets « static - github.com/mdashx/basicwebtheme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2e7fa055a243078deefd35de5c2e62a1d0082f0 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
html,
body {
  font-family: sans-serif;
}

h2 {
    margin-top: 0px;
}

main {
  min-height: 100vh;
  padding: 1em;
  overflow-x: scroll;
}

img {
  max-width: 100%;
}

footer ul {
  margin: 0;
  padding: 0;
}

footer li {
  margin: 0;
  display: inline;
  padding: 2px 3px;
}

footer li em {
  margin: 0;
  display: block;
  padding: 2px 3px;
}


blockquote {
  margin-left: 0.75em;
  color: #3b3b3b;
  font-size: 95%;
}

pre,
code {
  overflow-x: scroll;
  padding-bottom: 25px;
  color: #3b3b3b;
  font-size: 95%;
}

table {
    min-width: 90vw;
    border-collapse: collapse;
    border: 1px solid #bdbdbd;
}

th {
  text-align: left;
  white-space: nowrap;
  padding: 3px 6px;
  background: #eaeaea;
  border: 1px solid #bdbdbd;
}

td {
  white-space: nowrap;
  border: 1px solid #bdbdbd;
  padding: 5px 10px;
}

.post-header h2 {
    margin-bottom: 3px;
}


/* The styles below deal with the default Hugo theme content. */

.list-content h1, .list-content h2 {
    font-size: 1.2em;
}

.list-content h2 {
    font-size: 1.1em;
}

.archive {
    margin-bottom: 15px;
}

@media (min-width: 699px) {
  main {
    width: 500px;
    overflow-x: visible;
  }

  img {
    max-width: 500px;
  }

  footer li {
    display: inline;
  }

  footer li em {
      display: inline;
  }

  
  #updated {
    border-left: 1px solid #737373;
    padding-left: 5px;
  }
}