-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (63 loc) · 1.02 KB
/
style.css
File metadata and controls
87 lines (63 loc) · 1.02 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
}
header {
background-color: #323232;
color: rgb(223,130,62);
font-size: 36px;
font-family: Arial, Helvetica, sans-serif;
padding: 2rem;
}
main {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
}
img {
width: 250px;
height: 250px;
padding: 2rem;
}
hr {
width: 90%;
margin: auto;
}
.content {
padding-top: 2rem;
line-height: 1.8;
}
.sidebar {
background-color: #E5E5E5;
height: 600px;
}
.sidebar_name {
padding: 2rem 0 1rem 1rem;
font-size: 1.5rem;
}
ul {
list-style-type: none;
}
.nav_bar {
margin: 20px;
}
.nav_bar a {
text-decoration: none;
color: rgb(223,130,62);
padding: 0.5rem;
}
.footer {
background-color: #323232;
color: white;
margin: auto;
text-align: center;
height: 60px;
padding: 1.5rem 0 2rem 0;
}
span {
color: rgb(223,130,62);
}
.article_style {
padding: 1rem;
}