-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.css
59 lines (51 loc) · 943 Bytes
/
css.css
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
body {
text-align: center;
background-color: burlywood;
font-size: larger;
font-family: 'Times New Roman', serif;
}
.lang {
margin-top: 15px;
margin-bottom: 15px;
}
.main_field {
padding: 20px;
}
.intro {
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
border: solid 2px black;
border-radius: 15px;
background-color: lightgrey;
padding: 25px;
text-align: left;
}
.main {
margin-left: auto;
margin-right: auto;
background-color: lemonchiffon;
padding: 25px;
text-align: left;
}
.right-intendation-cancel {
text-indent: 0px
}
/* It feels like making text RTL is going to give you as many issues as it solves... */
.author-right {
text-align: right;
text-indent: 70px;
direction: rtl;
}
p {
margin-top: 5px;
margin-bottom: 5px;
text-indent: 30px;
}
@media screen and (max-width: 600px) {
p {
margin-top: 10px;
margin-bottom: 10px;
text-indent: 20px;
}
}