34
34
font-family : 'Roboto' ;
35
35
font-weight : 400 ;
36
36
font-style : normal;
37
- font-size : 20 px ;
37
+ font-size : 18 px ;
38
38
color : # ACB0B9 ;
39
39
text-shadow : 0px -2px 0px rgba (0 , 0 , 0 , 0.25 );
40
40
}
@@ -51,23 +51,25 @@ body{
51
51
animation : fade-and-come-down 1.25s forwards;
52
52
}
53
53
54
+
55
+
54
56
.header {
55
57
background-size : cover;
56
58
background-repeat : no-repeat;
57
59
background-origin : border-box;
58
- display : grid ;
59
- grid-template-columns : 150 px auto ;
60
+ display : flex ;
61
+ flex-wrap : nowrap ;
60
62
column-gap : 30px ;
61
63
place-items : center;
62
64
border-bottom-left-radius : 5px ;
63
65
border-bottom-right-radius : 5px ;
64
66
overflow : hidden;
65
- padding-top : 20px ;
66
- padding-bottom : 20px ;
67
+ padding : 20px ;
67
68
background : linear-gradient (180deg , # 3B158C 0% , # 5C3DE3 100% );
68
- filter : drop-shadow (6 px 6px 6 px rgba (0 , 0 , 0 , 0.25 ));
69
+ filter : drop-shadow (0 px 6px 0 px rgba (0 , 0 , 0 , 0.25 ));
69
70
text-shadow : 0px -4px 0px rgba (0 , 0 , 0 , 0.25 );
70
71
justify-content : center;
72
+ align-items : center;
71
73
}
72
74
73
75
@@ -76,10 +78,33 @@ body{
76
78
}
77
79
78
80
.headertxt {
79
- text-align :
80
- left;
81
- float :
82
- right;
81
+ text-align : left;
82
+ float : right;
83
+ }
84
+
85
+ @media only screen and (max-width : 800px ) {
86
+ body {
87
+ padding-left : 35px ;
88
+ padding-right : 35px ;
89
+ }
90
+ .logo {
91
+ transform-origin : left;
92
+ transform : scale (.7 );
93
+ width : 110px
94
+ }
95
+ .header {
96
+ grid-template-columns : auto auto;
97
+ }
98
+ }
99
+
100
+ @media only screen and (max-width : 600px ) {
101
+ .logo {
102
+ display : none;
103
+ }
104
+
105
+ .header {
106
+ grid-template-columns : auto;
107
+ }
83
108
}
84
109
85
110
.header--home {
@@ -102,9 +127,10 @@ body{
102
127
border-top-left-radius : 5px ;
103
128
border-top-right-radius : 5px ;
104
129
display : flex;
105
- flex-wrap : nowrap;
130
+ /* flex-wrap: nowrap; */
106
131
justify-content : space-between;
107
132
align-items : center;
133
+ overflow-x : scroll;
108
134
}
109
135
110
136
.navbar a {
@@ -137,7 +163,6 @@ body{
137
163
138
164
.dropdown {
139
165
float : right;
140
- overflow : hidden;
141
166
font-family : 'Roboto Mono' ;
142
167
}
143
168
@@ -151,6 +176,7 @@ body{
151
176
background-color : inherit;
152
177
font-family : inherit;
153
178
margin : 0 ;
179
+ white-space : nowrap;
154
180
}
155
181
156
182
.navbar a : hover , .dropdown : hover .dropbtn {
@@ -170,6 +196,13 @@ body{
170
196
border-bottom-left-radius : 5px ;
171
197
border-bottom-right-radius : 5px ;
172
198
}
199
+
200
+ @media only screen and (max-width : 768px ) {
201
+ .dropdown-content {
202
+ margin-left : 0 ;
203
+ right : 75px ;
204
+ }
205
+ }
173
206
174
207
.dropdown-content a {
175
208
float : none;
@@ -324,6 +357,12 @@ body{
324
357
}
325
358
}
326
359
360
+ @media only screen and (max-width : 500px ) {
361
+ .gallery {
362
+ grid-template-columns : auto;
363
+ }
364
+ }
365
+
327
366
.galleryitem {
328
367
float : left;
329
368
height : 95% ;
0 commit comments