-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatfacestyle.css
83 lines (69 loc) · 1.21 KB
/
catfacestyle.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
body {
background-image: url("newbg.png");
background-repeat: repeat;
}
.container {
font-size: 1.5em;
min-height: 300px;
width: 100%;
display: grid;
grid-template-columns: auto 1fr;
grid-template-rows: auto 1fr auto;
grid-gap: 12px;
grid-template-areas:
"advert header"
"advert content"
"advert footer";
}
.header {
background: LightSkyBlue;
grid-area: header;
}
.navbar {
width: 100%;
background-color: PaleGreen;
overflow: auto;
}
.seo {
color: white;
}
.navbar a {
float: left;
text-align: center;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #000;
}
.active {
background-color: #4CAF50;
}
@media screen and (max-width: 500px) {
.navbar a {
float: none;
display: block;
}
}
.adBox {
background: lightpink;
grid-area: advert;
}
.content {
background: PaleTurquoise;
grid-area: content;
display: grid;
grid-template-columns: auto 1fr;
}
.footer {
background: lightpink;
grid-area: footer;
}
.itemOne {
background: PaleGreen;
}
.itemTwo {
background: BlanchedAlmond;
}