-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
115 lines (101 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
* {
margin: 0;
padding: 0;
}
.top {
height: 1024px;
background-image: url(img/bg.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.header {
padding-left: calc(50% - 600px);
padding-right: calc(50% - 600px);
padding-top: 217px;
}
.title {
color: #fff;
display: flex;
width: 788px;
height: 125px;
flex-direction: column;
justify-content: center;
font-family: "Montserrat";
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: normal;
padding-bottom: 32px;
}
.top-text {
color: #fff;
font-family: "Montserrat";
font-size: 18px;
font-style: normal;
font-weight: 300;
width: 481px;
padding-bottom: 44px;
}
.top-btn {
font-family: "Montserrat";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
width: 234px;
height: 48px;
border-radius: 30px;
background-color: #9C0332;
border: 1px solid #9C0332;
color: #fff;
}
.product-box {
padding-top: 128px;
height: 556px;
background-color: #000915;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 32px;
}
.product {
width: 379px;
height: 300px;
}
.product-text {
color: #09ff00;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 32px;
display: flex;
flex-direction: column;
padding-left: 32px;
padding-top: 236px;
}
.product-img {
background-image: url(img/game.jpg);
border-radius: 16px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.product-img2 {
background-image: url(img/game2.jpg);
border-radius: 16px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.product-img3 {
background-image: url(img/game3.jpg);
border-radius: 16px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.product-link {
text-decoration: none;
}