-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (104 loc) · 2.18 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
112
113
114
115
116
117
118
119
120
121
122
123
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@100;400&display=swap');
* {
margin: 0;
padding: 0;
}
header {
/* border: 2px solid red; */
font-family: 'Playpen Sans', cursive;
font-weight: 100;
padding: 0px 20px;
border-bottom: rgb(157, 156, 156) 1px solid;
display: flex;
justify-content: space-between;
align-items: center;
user-select: none;
}
header div {
display: flex;
flex-direction: column;
align-items: center;
background-color: antiquewhite;
padding: 10px;
border-radius: 20px;
margin: 20px;
}
header nav a {
color: rgb(24, 24, 24);
font-size: 25px;
padding: 0px 10px;
text-decoration: none;
cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🐶</text></svg>") 16 0, auto;
}
main {
display: flex;
justify-content: space-around;
}
main section {
padding: 30px 40px 0px;
}
aside {
width: 35%;
display: flex;
flex-direction: column;
align-items: center;
}
#selects {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
select {
border: 1px solid silver;
width: 180px;
margin: 8px 4px;
border-radius: 5px;
cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🐶</text></svg>") 16 0, auto;
}
select:focus {
outline: 1px solid rgb(22, 111, 236);
}
#pictures {
width: 65%;
}
#images {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
#images div img {
width: 150px;
height: 150px;
padding: 10px;
object-fit: cover;
transition: transform 400ms ease;
}
#images div img:hover {
transform: scale(1.1);
background-color: rgb(216, 169, 74);
cursor: pointer;
}
.categoryTitle {
width: 100%;
margin: 20px 0px;
text-align: center;
}
#pictures h4 {
text-align: center;
color: rgb(163, 167, 167);
font-size: 14px;
}
#info {
display: flex;
flex-direction: column;
align-items: center;
}
#info div img {
width: 350px;
height: 200px;
object-fit: cover;
border-radius: 80px;
}
#info div {
margin-bottom: 7px;
}