summaryrefslogtreecommitdiff
path: root/css/main.less
blob: af1605f383d32d3285049a630f78dfe7442503d8 (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
@import "./variables.less";

@import "./custom/blockquotes.less";
@import "./custom/helpers.less";
@import "./custom/navigation.less";

@import "./formats/asciidoc.less";

html {
	background-color: @bodyBackgroundColor;
}

body {
  font-family: Times;
  color: @bodyTextColor;
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
  width: 100%;
  margin: 0;
}

small {
  font-size: 0.7em;
}

li p {
	margin: 0;
}

table {
	width: 100%;
}

figure.highlight pre, pre.pygments {
	border: 2px solid @blockBorderColor;
	padding: 8px;
}

code {
	background-color: @blockBackgroundColor;
	padding: 2px;
}

div.container {
  max-width: 900px;
  margin: 0 auto 0.5em auto;
  padding-top: 1em;
}

span.citneed{
  vertical-align: top;
  font-size: 0.7em;
  padding-left: 0.3em;
}

p.text-center {
	text-align: center;
}

article {
	footer hr {
		width: 50%
	}
}

@media screen and (max-width: 500px) {
  body{
    text-align: left;
  }

  div.fancyPositioning{
    div.picture-left{
      float: none;
      width: inherit;
    }

    div.tleft{
      float: none;
      width: inherit;
    }
  }

  blockquote{
    span{
      width: 80%;
    }
    author{
      padding-top: 1em;
      width: 80%;
      margin-left: 15%;
      &::before{
        content: "";
        margin-right: inherit;
      }
    }
  }
}