-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.css
105 lines (83 loc) · 1.12 KB
/
blog.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
@media (max-width: 700px) {
.buttons-ul {
display: none;
}
}
@media (min-width: 701px) {
}
body {
font-family: 'Open Sans', sans-serif;
background-color: #fafafa;
}
.outer-div {
max-width: 100%;
}
.inner-left {
float: left;
width: 15%;
text-align: center;
position: relative;
margin-top: 10%;
}
.buttons-ul {
list-style-type: none;
margin: 0;
margin-left: 10px;
padding: 0;
position: fixed;
}
.buttons-ul li {
margin-bottom: 25px;
}
.buttons-ul .fa {
font-size: 50px;
}
.fa-bars {
color: red;
}
.fa-home {
color: green;
}
.fa-facebook-official {
color: blue;
}
.fa-twitter-square {
color: cyan;
}
.buttons-ul a {
text-decoration: none;
color: black;
}
.inner-right {
float: right;
width: 85%;
}
h1 {
font-size: 2.5em;
margin-right: 10%;
}
.blog-img-div {
text-align: center;
}
img {
margin-right: 10%;
max-width: 85%;
height: auto;
}
h2,
p,
ol,
ul {
margin-right: 10%;
}
footer {
font-size: .8em;
clear: both;
}
.ruby-code {
border:solid gray;
border-width:.1em .1em .1em .8em;
padding:.2em .6em;
color: #ed9d13;
background: #202020;
}