-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (84 loc) · 1.45 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
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap');
* {
box-sizing: border-box;
margin:0;
padding:0
}
li {
list-style-type: none;
}
a{
text-decoration: none;
}
body {
background: teal;
font-family: 'Sora', sans-serif;
}
header {
text-align: center;
}
form {
display: flex;
flex-direction: column;
gap:15px
}
.form__block {
display: flex;
justify-content: center;
align-items: center;
gap:10px;
}
.form__block input {
flex-grow: 1;
font-size: 25px;
padding:0 15px;
}
.form__block button {
padding:5px;
font-size: 25px;
}
.wrapper-list {
margin-top: 20px;
}
.parent__href {
display: inline-block;
color:#000;
transition:.3s;
}
.parent__href:hover {
color:#000;
}
.list-box {
display: flex;
justify-content: space-between;
align-items: center;
gap:20px;
margin-bottom: 15px;
background-color: beige;
border-radius: 20px;
transition: .3s;
padding:5px 10px
}
.list-box:hover {
transform: scale(.99);
}
.list-box__image {
width: 200px;
}
.list-box__image img {
width: 100%;
height: 200px;
}
.list_box__href {
font-size: 18px;
color:#000;
display: inline-block;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.list_box__href:hover {
color:#000;
}
.list-box__items {
display: flex;
flex-direction: column;
}