-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
121 lines (105 loc) · 1.86 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
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@300&display=swap");
* {
margin: 0px;
padding: 0px;
font-family: "Public Sans", sans-serif;
}
body {
background-color: rgb(214, 214, 214);
overflow-x: hidden;
}
#navbar {
display: flex;
position: fixed;
align-items: center;
z-index: 1;
background-color: #03dac6;
width: 100vw;
height: 10vh;
}
.navbar_links {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
padding: 0px 3vw;
height: 10vh;
color: white;
transition: background-color 1s;
font-size: 20px;
font-weight: 600;
text-decoration-line: none;
}
.navbar_links:hover {
background-color: #005c58;
}
.icon {
position: absolute;
left: 90vw;
}
.icon:hover {
cursor: pointer;
}
main {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#landing {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
}
#orientation_for_phones_button {
width: 10px;
height: 10px;
position: absolute;
top: 85vh;
z-index: 1;
}
#products_container {
display: grid;
grid-template-columns: auto auto auto;
row-gap: 6vh;
column-gap: 5vw;
margin-bottom: 10px;
}
.product {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
padding-top: 2vh;
padding-bottom: 2vh;
border-radius: 10px;
box-shadow: 0px 3px 3px 3px rgba(92, 100, 105, 0.678);
}
.product:hover {
cursor: pointer;
}
.image {
max-width: 120px;
max-height: 220px;
padding-left: 3vw;
padding-right: 3vw;
}
.phone_name {
padding-top: 4vh;
}
footer {
display: flex;
align-items: center;
background-color: #32a89b;
width: 100vw;
height: 10vh;
margin-top: 30px;
}
.footer_links {
padding: 0px 35px;
color: white;
font-size: 20px;
}