-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththird.css
129 lines (102 loc) · 1.64 KB
/
third.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
* {
box-sizing: border-box;
}
element.style {
display: none
}
.wrapper {
max-width: 850px;
margin-left: auto;
margin-right: auto;
}
.clear {
clear: both;
}
.top {
text-align: center;
background-color: #8affbf;
padding: 30px;
border-bottom: 15px solid #7ce5a6;
}
body {
font-family: 'Montserrat', sans-serif;
}
.toptop{
background-color: grey;
}
.image {
width: 200px;
height: 200px;
border-radius: 100px;
margin: 15px;
margin-left: auto;
margin-right: auto;
}
.cat1 {
background: url("http://placekitten.com/g/200/300") no-repeat;
}
.cat2 {
background: url("http://farm9.staticflickr.com/8553/8750628409_d53f7f6a9e_n.jpg") no-repeat;
}
.cat3 {
background: url("http://placekitten.com/g/200/300") no-repeat;
}
a:hover, a:active {
background-color:#7A991A;
}
.nav a {
text-decoration: none;
color: black;
}
@media (min-width: 650px) {
h1 {
font-size: 48px;
}
.wrapper:after {
content: "";
clear: both;
width: 100%;
}
.column {
width: 33.333%;
float: left;
padding: 5px 5px;
}
.nav a:not(:first-child) {
float: right;
padding: 5px;
}
.logo {
float: left;
text-decoration: none;
width: 40px;
height: 40px;
border-radius: 100%;
margin: 11px;
}
}
@media (max-width: 650px) {
h1 {
font-size: 24px;
}
.column {
padding: 5px 5px;
}
.nav a {
display: list-item;
background-color: #8affbf;
padding: 10px;
border-bottom: 5px solid #7ce5a6;
margin-right: auto;
margin-left: auto;
}
.logo {
display: none;
}
.nav a:first-child {
display: none
}
}
a:hover, a:active {
background-color:#7ce5a6;
}