-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
127 lines (111 loc) · 2.39 KB
/
Copy pathstyles.css
File metadata and controls
127 lines (111 loc) · 2.39 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body {
background: rgb(58, 58, 58);
color:brown ;
font-family:Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: rgb(244, 237, 237);
background-image: url("images/blog.jpg");
background-size: 100%;
background-position: center;
height: 450px;
padding: 20px;
text-align: center;
background-repeat: no-repeat;
}
header a {
text-decoration: none;
color:black;
-webkit-text-stroke-color: rgb(18, 1, 1);
-webkit-text-stroke-width: 1px;
text-shadow: 2px 4px 4px;
text-transform: uppercase;
margin-right:158px;
}
header .mobile {
display: none;
}
header .logo a {
background-size: 300px;
background-repeat: no-repeat;
display: inline-block;
height: 80px;
position: relative;
text-indent: -9999999px;
top: -30px;
width: 300px;
}
nav ul {
margin: 0;
padding: 0;
list-style-type: none;
}
nav li {
display: inline-block;
margin-right: 20px;
}
nav li a:hover{
text-decoration:underline;
}
/* RESPONSIVE RULES */
@media screen and (max-width: 700px) {
header {
height: 250px;
background-position: 0 -30px;
}
header a{
color:white;
margin:0 0 0 0px;
-webkit-text-stroke-color:white;
-webkit-text-stroke-width: 1px;
}
header .mobile {
display: inline-block;
}
header .desktop {
display: none;
}
}
@media screen and (max-width: 500px) {
header {
height: 10px;
position: 0 -0px;
}
}
/* FEATURES */
.features {
background: white;
color: gray;
padding: 20px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.features figure {
margin: auto;
padding: 5px;
text-align: center;
text-transform: uppercase;
width: 200px;
font-family:serif;
}
.features figure img {
border: 1px solid white;
border-radius: 0%;
box-shadow: rgb(7, 7, 7) 0 0 10px;
width: 200px;
margin: auto;
}
/* FOOTER */
footer {
background: black;
color: gray;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
padding: 20px 20px;
text-align: center;
height:20px;
text-transform: uppercase;
}