-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (98 loc) · 1.98 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
background-color: red;
}
.nav {
display: flex;
justify-content: space-evenly;
align-items: center;
height: 44px;
background-color:#161617cc;
width: 1347px
}
body {
}
.maincontainer .div {
background-image: url(apple-vision-pro__cctkg4nhnb7m_og.png);
background-repeat: no-repeat;
height: 100dvh;
width: 1347px;
background-size: cover;
}
.nav-img {
width: 23px;
}
div.navitem {
display: flex;
align-items: center;
height: 44px;
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.856);
font-weight: 200;
}
.navicon {
display: flex;
align-items: center;
color: rgba(255, 255, 255, 0.856);
height: 44px;
}
.img-fluid {
border-top: 2px solid black;
margin-block: 20px;
height: 700px;
width: 100vw;
}
.grid {
display: grid;
grid-template-columns: repeat(10, 1fr);
grid-template-rows: repeat(12, 1fr);
gap: 10px;
color: white;
height: 100vh;
}
div.grid-item1 {
background-image: url(152.jpeg);
background-size:cover;
background-repeat: no-repeat;
grid-column: 1/6;
grid-row: 1/7;
background-color: red;
}
div.grid-item2 {
background-image: url(card2.jpg);
background-size:cover;
background-repeat: no-repeat;
background-color: red;
grid-row: 1/7;
grid-column: 6/11;
}
div.grid-item3{
background-image: url(vision9.jpeg);
background-size:cover;
background-repeat: no-repeat;
background-color: red;
grid-row: 7/13;
grid-column: 1/6;
}
div.grid-item4{
background-image: url(ultra\ 2.jpeg);
background-size:cover;
background-repeat: no-repeat;
background-color: red;
grid-row: 7/13;
grid-column: 6/11;
}
div.lastcontianer{
display: flex;
justify-content: space-evenly;
align-items: center;
height:40px;
background-color:#161617cc ;
padding-inline: 120px;
overflow: hidden;
width: 1347px
}