-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.css
More file actions
97 lines (82 loc) · 1.36 KB
/
blog.css
File metadata and controls
97 lines (82 loc) · 1.36 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
88
89
90
91
92
93
94
95
96
97
/* CENTERING MAIN PICTURE AND TITLE */
#mainpic {
position: absolute;
width: 720px;
height: 283px;
margin: -141.5px 0 0 -360px;
left: 50%;
top: 50%;
z-index: 0;
}
/* #title {
position: absolute;
border: 3px solid black;
background-color: white;
height: 63.2px;
width: 300px;
margin: 115px 0 0 -150px;
left: 50%;
right: 50%;
z-index: 1;
} */
#mainpic>p {
font: 35px/1.2rem "open sans", sans-serif;
border: 3px solid black;
background-color: white;
position: absolute;
z-index: 1;
margin-top: -320px;
margin-left: 210px;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 10px;
padding-right: 10px;
}
/* ADDING NAV BAR */
#nav {
position: relative;
text-align: justify;
background-color: grey;
opacity: 0.8;
font-size:0;
}
#nav:after {
content: '';
display: inline-block;
width: 100%;
}
#nav li {
display: inline-block;
font-size:1rem;
margin-left: 50px;
margin-right: 50px;
}
#nav a:link {
display: block;
padding: 1em 0;
}
a {
text-decoration: none;
color: white;
}
/* TEXT CONTENT */
#aboutme {
position: absolute;
margin-top: 400px;
margin-left: 40px;
margin-right: 40px;
}
#aboutme>p {
font-size: 1.2em;
line-height: 115%;
text-align: justify;
}
span {
font-size: 1.5em;
font-style: bold;
}
/* FORM SUBMISSION STYLING */
form {
text-align: center;
margin-top: 75px;
}