forked from scripting/myWord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
essay.css
121 lines (119 loc) · 2.3 KB
/
essay.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
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
115
116
117
118
119
120
121
body {
font-family: Ubuntu;
font-size: 18px;
background-color: whitesmoke;
}
.divPageBody {
width: 60%;
margin-top: 90px;
margin-left: auto;
margin-right: auto;
}
.divBackgroundImage {
position: absolute;
width: 100%;
height: 400px;
margin-left: 0;
margin-top: 0;
border-top: 1px solid silver;
z-index: 10;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.divPageTopText {
width: 70%;
margin-left: auto;
margin-right: auto;
margin-top: 160px;
}
.divPageTopText a {
color: white;
}
.divPageTitle {
font-size: 50px;
letter-spacing: -0.02em;
font-weight: 700;
font-style: normal;
letter-spacing: -0.04em;
line-height: 1.1;
margin-bottom: 8px;
color: white;
text-shadow: 1px 1px black;
}
.divPageByline {
font-size: 18px;
color: white;
margin-bottom: .5em;
text-shadow: 1px 1px black;
}
.divPageDescription {
font-size: 24px;
color: white;
margin-top: .5em;
height: 3em;
text-shadow: 1px 1px black;
}
.divEssayText {
font-family: "Georgia";
font-size: 24px;
line-height: 145%;
width: 55%;
margin-top: 125px;
margin-left: auto;;
margin-right: auto;
margin-bottom: 400px;
}
.divSubhead {
font-family: "Ubuntu";
font-weight: bold;
margin-top: 1em;
margin-bottom: .15em;
}
.divMarkdownText h4 {
font-size: 24px;
margin-top: 1.25em;
margin-bottom: .75em;
}
.divVersionNumber {
position: absolute;
top: 0;
right:0;
font-size: 13px;
padding: 5px;
color: white;
z-index: 20;
}
.divVersionNumber a {
color: white;
}
/* styles for phone */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
.divPageTopText {
width: 80%;
margin-top: 110px;
}
.divPageTitle {
font-size: 44px;
}
.divPageDescription {
font-size: 18px;
line-height: 110%;
}
.divEssayText {
width: 80%;
margin-top: 125px;
margin-left: auto;;
margin-right: auto;
margin-bottom: 400px;
}
.divVersionNumber {
position: absolute;
padding: 2px;
}
}