-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
137 lines (118 loc) · 2.78 KB
/
Copy pathstyles.css
File metadata and controls
137 lines (118 loc) · 2.78 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
body {
background-color: rgb(176, 196, 222);
}
/**/
header {
text-align:center;
border: 2px double rgb(70, 130, 180);
border-radius: 10px;
background-color: rgb(222, 222, 242);
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 30pt;
font-weight: bold;
color: rgb(70, 130, 180);
margin: 20px 40%;
box-sizing: border-box;
}
.articles {
width: 70%;
margin: 0px auto;
position: absolute;
left: 12%;
}
.article_l {
width: 70%;
box-sizing: border-box;
border: 4px double rgb(222, 222, 242);
border-radius: 10px;
background-color: rgb(222, 222, 242);
padding: 10px;
padding-left: 10px;
text-align: right;
}
IMG.fig {
float: left;
}
.article_l > .header > .title {
font-size: 20pt;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
margin: 10px;
}
.article_l > .header > .subtitle {
font-size: 16pt;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.article_l > .header > .body {
font-size: 12pt;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.article_r {
width: 70%;
box-sizing: border-box;
border: 4px double rgb(222, 222, 242);
border-radius: 10px;
background-color: rgb(222, 222, 242);
padding: 10px;
padding-right: 10px;
margin: 10px 30%;
position: relative;
right: -100px;
text-align: left;
}
.article_r > .header > .title {
font-size: 20pt;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
margin: 10px;
}
.article_r > .header > .subtitle {
font-size: 16pt;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.article_r > .header > .body {
font-size: 12pt;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.article_c {
width: 70%;
box-sizing: border-box;
border: 4px double rgb(222, 222, 242);
border-radius: 10px;
background-color: rgb(222, 222, 242);
padding: 10px;
margin: 10px 15%;
text-align: center;
}
.article_c > .header > .title {
font-size: 20pt;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
margin: 10px;
}
.article_c > .header > .body {
font-size: 12pt;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.finish {
width: 70%;
font-size: 20pt;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
padding: 10px;
margin: 10px 28%;
color: rgb(176, 196, 222);
}
.finish_f {
text-align:center;
border: 2px double rgb(70, 130, 180);
border-radius: 10px;
background-color: rgb(222, 222, 242);
width: 70%;
font-size: 20pt;
font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
padding: 10px;
margin: 10px 28%;
color: rgb(70, 130, 180);
}