-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjournal_layout.css
More file actions
58 lines (47 loc) · 869 Bytes
/
journal_layout.css
File metadata and controls
58 lines (47 loc) · 869 Bytes
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
body {
background-image: url('images/hashcode.png');
background-size: 100%;
margin-left: 10%;
margin-right: 10%;
}
.container {
margin: 0 auto;
max-width: 50em;
}
.main {
border: 10px white solid;
background-color: white;
}
#global-header {
background-color: #A8F0F0;
/* border: 0px #A8F0F0 solid; */
text-align: right;
}
#global-details {
font-size: 10pt;
border: 0px;
}
/* #global-header #global-details {
border: 5px orange solid;
margin: 2px;
} */
.article {
border: 4px #C2E9E9 solid;
background-color: #E8FBFB;
padding: 5px;
margin: 10px 0px 0px 0px;
}
.article-header .article-title {
font-size: 150%;
margin: 5px;
}
.created-at {
border-bottom: 2px rgb(81, 138, 133) dashed;
}
.article-body {
clear: right;
overflow: hidden;
}
.thumbnail img {
float: right;
}