-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (94 loc) · 1.73 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
.viewport {
width: 100vw;
background-image: url(./aaa.jpg);
background-size: cover;
height: fit-content;
transition: all;
transition-duration: 30ms;
}
.op:hover {
text-decoration: underline;
color: brown;
}
#option {
position: absolute;
left: 0px;
right: 0px;
margin: 0px auto;
top: 110px;
z-index: 1;
border-radius: 20px;
background-color: rgba(207, 225, 225, 0.5);
backdrop-filter: blur(10px);
width: fit-content;
margin: 0px auto;
}
.op {
margin-top: 10px;
overflow-x: auto;
padding: 3px;
padding: 3px 60px;
}
/* #option{
overflow: auto;
height: 50vh;
} */
.box{
width: 200px;
height: 100px;
background-color: aqua;
margin: 20px;
}
.present {
width: 100vw;
height: 100vh;
}
.pastandfuture {
border: 2px solid;
overflow-y: hidden;
overflow-x: auto;
scroll-margin: 23px;
margin: 10px auto;
width: 80vw;
display: flex;
/* padding: 20px; */
/* scroll-behavior: smooth; */
/* overflow: auto; */
}
.cards {
border-radius: 20px;
backdrop-filter: blur(10px);
background-color: rgba(153, 170, 185, 0.3);
width: 400px;
height: 200px;
padding: 30px;
}
.data {
backdrop-filter: blur(10px);
}
.btn {
top: 60px;
}
.searchbox {
background-color: rgba(207, 225, 225, 0.5);
backdrop-filter: blur(10px);
overflow: auto;
}
@media only screen and (max-width: 600px) {
.viewport {
flex-direction: column;
}
.present {
margin: auto;
width: 80vw;
}
.searchbox2 {
margin: auto;
position: relative;
width: 80vw;
}
/* .option {
max-width: 100%;
width: fit-content;
} */
}