-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathresponsive.css
More file actions
122 lines (96 loc) · 2.37 KB
/
responsive.css
File metadata and controls
122 lines (96 loc) · 2.37 KB
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
@media only screen and (max-width: 1103px) and (min-width: 700px) {
.slider {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
border-radius: 20px;
padding-top: 1px;
width: 90vw;
height: 40vh;
padding-top: 2px;
}
main .container .card-items {
display: inline-flex;
justify-content: center;
align-items: center;
width: 20vw;
background-color: rgb(255, 255, 255);
height: 160px;
border: 2px solid rgb(173, 159, 159);
border-radius: 20px;
margin: 10px 25px;
}
main .container .card-items img {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
border-radius: 20px;
margin-top: 10px;
width: 125px;
height: 125px;
}
.slideshow-container {
padding: 0px 5px;
}
}
@media only screen and (max-width: 700px) {
main .container .card-items {
display: inline-flex;
width: 130px;
background-color: rgb(255, 255, 255);
height: 150px;
border: 2px solid rgb(173, 159, 159);
border-radius: 20px;
margin: 10px 25px;
}
main .container .card-items img {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
border-radius: 20px;
margin-top: 10px;
width: 100px;
height: 100px;
}
header nav ul {
color: white;
display: flex;
flex-direction: column;
list-style: none;
}
header {
background-color: #2874f0;
padding-bottom: 60px;
height: 25px;
}
header nav ul input {
border-radius: 1px;
border-style: solid;
border-color: #2C74B3;
position: absolute;
top: 0;
right: 0;
width: 30vw;
height: 30px;
text-align: start;
padding: 2px 10px;
text-decoration: none;
margin-right: 20px;
margin-top: 30px;
border-radius: 20px;
}
header nav ul h1 {
display: flex;
color: white;
position: absolute;
top: 0;
padding: 30px 30px;
font-family: 'Tilt Warp', cursive;
}
.slideshow-container {
padding: 0px 3px;
}
}