-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (60 loc) · 1.1 KB
/
styles.css
File metadata and controls
69 lines (60 loc) · 1.1 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
* {
box-sizing: border-box;
}
html {
font-size: 24px;
background-color: MintCream;
padding-top: 100px;
}
.newspaper {
font-family: "Open Sans", sans-serif;
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
font-size: 16px;
}
.name {
font-family: Times New Roman, serif;
font-size: 2rem;
text-transform: uppercase;
text-align: center;
margin: 0.67em 0 10px;
font-weight: bold;
}
.date {
font-size: 1em;
text-align: center;
margin: 1em 0 20px;
}
.headline {
font-size: 2em;
font-weight: bold;
line-height: 1.2;
display: blcok;
margin: 0.83em 0;
}
.sub-headline {
font-size: 1.5em;
font-style: italic;
font-weight: 100;
line-height: 1.4;
margin-bottom: 15px;
}
.author {
font-size: 1em;
text-transform: uppercase;
font-weight: bold;
margin-bottom: 20px;
}
.text {
text-indent: 20px;
font-size: 1em;
line-height: 2em;
margin-bottom: 15px;
}
.text::first-letter {
font-weight: bold;
font-size: 2em;
}