-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (110 loc) · 2.25 KB
/
style.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
106
107
108
109
110
111
/* style for entire body of content */
body{
margin: 0;
padding: 0;
background-color:rgb(221, 199, 139);
}
/* header section */
header {
height:200px;
color:rgb(238, 238, 171);
background-color:rgb(85, 97, 67);
padding-left:5px;
padding-right:5px;
padding-top:50px;
padding-bottom:5px;
text-align:center;
}
header h1{
font-family:Arial, Helvetica, sans-serif;
font-size: 50px;
font-weight: 500;
}
/* .......................... */
/* main>>>article>>>paragraph-wrapper,paragraph-wrapper, contacts-section,*/
main{
color:rgb(85, 97, 67);
background-color:rgb(238, 238, 171);
width:60%;
margin-top:0;
margin-bottom:0;
margin-left: 20%;
margin-right:20%;
}
article{
width:75%;
margin:10px 10%;
}
.paragraph-wrapper{
/* width:75%;
margin:10px 10%; */
padding:25px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.paragraph-wrapper h2{
text-align: center;
}
.contacts-section{
text-align:left;
/* padding:10px; */
margin:10px;
margin-bottom: 20px;
}
.contacts-section>ol>li{
padding-bottom: 2px;
}
.contacts-section>ol>li>a{
text-decoration: none;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-weight: 300;
color:rgb(45, 45, 110);
}
/* link hover */
.contacts-section>ol>li>a:hover{
color:rgb(157, 157, 158);
}
.contacts-section h2{
text-align:center;
}
footer{
background-color:black;
}
.img-box{
height:80%;
padding:15px 15px;
position:relative;
}
.img-box::after{
content:'My picture taken at Split Rock Lighthouse in Duluth,MN.';
position:absolute;
left:5%;
bottom:5%;
}
.img-box:hover::after{
font-size: 20px;
font-weight:200;
color:white !important;
}
img{
max-width:100%;
}
footer{
padding-top: 20px;
height: 100px;
color:white;
text-align:center;
}
/* map at the end for my city */
#map {
height: 400px;
width: 100%;
}
/* for email */
#email-link{
text-decoration: none;
font-weight: 400;
}
/* hover contact section*/
#email-link:hover{
color:greenyellow;
}