-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
191 lines (155 loc) · 3.13 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
.clocks:hover {
background-color: lightgray;
}
.clocks {
padding:3px;
width:75%;
transition: background 500ms;
}
a {
text-decoration: none;
color:black;
transition: color 500ms;
}
a:hover {
color:lightseagreen;
}
body {
background-color: rgb(213, 226, 226);
}
#input {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-gap: 10px;
}
.hideThese {
height:100px;
border-radius: 10px;
}
.clocks div {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.clocks {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
* {
font-family: "Roboto", Arial, sans-serif;
margin: 0;
}
img {
transition: filter 150ms linear;
}
img:hover {
filter:saturate(40%) brightness(70%);
}
.filler {
background-color: lightcyan;
height:100%;
width:100%;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color:gray;
font-size: 18px;
}
.images {
display: grid !important;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
grid-gap:10px;
}
#bundles {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}
.data {
margin-top: 20px;
}
h1 {
font-family: "Roboto", Arial, sans-serif;
text-align: center;
padding:20px;
}
.text {
display: flex;
align-items: center;
justify-content: center;
}
/* side bar slide in CSS */
/* The side navigation menu */
.sidenav {
font-family: "Roboto", arial, sans-serif;
height: 100%; /* 100% Full-height */
width: 0; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */
left: 0;
background-color: white; /* Black*/
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 60px; /* Place content 60px from the top */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* The navigation menu links */
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: black;
display: block;
transition: 0.3s;
}
.side {
border-bottom: 1px solid black;
}
.sideTop {
border-top:1px solid black;
border-bottom:1px solid black;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
color: lightblue;
}
/* Position and style the close button (top right corner) */
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
#connect a {
display: inline-block;
}
#connect {
top: 85%;
position: absolute;
}
main {
font-family: "Roboto", Arial, sans-serif;
}
#aboutmain {
margin-left:100px;
}
.discription {
height:120px;
width: 100%;
}
.price {
padding: 10px 0 10px 0;
font-size:18px;
}