-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (99 loc) · 2.04 KB
/
style.css
File metadata and controls
114 lines (99 loc) · 2.04 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
.body {
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
}
.header {
width: 1280px;
height: 323px;
background-color: #445162;
display: flex;
justify-content: space-between;
border: 1px solid red;
}
.logo {
width: 469px;
height: 214px;
background-color: #ffffff;
margin-top: 50px;
margin-right: 50px;
border: 1px solid green;
align-self: flex-start;
}
.product {
margin-top: 49px;
margin-left: 51px;
flex-direction: column;
border: 1px solid rgb(151, 24, 24);
}
.pname {
font-family: Arial, Helvetica, sans-serif;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
color: #ffffff;
font-size: 60px;
font-weight: 400;
border: 1px solid black;
}
.list {
font-family: Arial, Helvetica, sans-serif;
margin-top: 50px;
align-self: flex-start;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
color: #ffffff;
font-size: 20px;
font-weight: 400;
line-height: 36px;
list-style-image: url(./img/check_icon.png);
border: 1px solid black;
}
.menu {
list-style-type: none;
border: 1px solid grey;
}
.menu li {
margin-top: 86px;
margin-left: 145px;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
color: #ffffff;
font-size: 20px;
font-weight: 400;
line-height: 36px;
border: 1px solid rgb(28, 150, 180);
}
.content {
display: flex;
flex-flow: row;
background-color: aqua;
justify-content: space-around;
align-items: center;
}
.item {
display: flex;
width: 200px;
height: 200px;
border: 1px solid red;
margin: 10px;
align-items: center;
text-align: center;
justify-content: center;
}
.news {
display: flex;
height: 200px;
background-color: #ccc;
align-items: center;
justify-content: center;
}
.block {
flex-grow: 1;
border: 1px solid red;
}
.footer {
display: flex;
height: 100px;
justify-content: center;
align-items: center;
text-align: center;
background-color: crimson;
}