-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.css
64 lines (55 loc) · 919 Bytes
/
base.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
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300|Roboto');
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Roboto', sans-serif;
font-family: sans-serif;
background-image: url("bg.png");
}
a {
text-decoration: underline;
font-style: italic;
color: black;
}
.article{
display: block;
color: black;
padding: 50px;
border-bottom: 1px dashed #d5d5d5;
text-decoration: none;
font-style: normal;
}
.article:last-child{
border: none;
}
.article h1{
margin-bottom: 5px;
font-family: 'Josefin Sans', sans-serif;
}
.article img{
max-width: 100%;
}
.content *{
margin-bottom: 1em;
}
.content *:last-child{
margin-bottom: 0;
}
.center{
text-align: center;
}
.wrap{
margin: 0 auto;
}
@media (min-width: 650px){
.wrap{
width: 80%;
}
}
@media (min-width: 900px){
.wrap{
width: 50%;
}
}