-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (113 loc) · 1.82 KB
/
style.css
File metadata and controls
122 lines (113 loc) · 1.82 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
*{
box-sizing: border-box;
margin: 0%;
}
body{
background-image: url(https://images.unsplash.com/photo-1494500764479-0c8f2919a3d8?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Njd8fG5hdHVyZXxlbnwwfDB8MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=60);
background-size: cover;
background-repeat: no-repeat;
height: 100vh;
width: 100vw;
overflow: hidden;
}
.container{
display: flex;
justify-content: center;
height: 70vh;
flex-wrap: wrap;
padding: 3%;
align-items: center;
}
.cal{
transform: translate(0%,6%);
background-color: rgb(8, 8, 8);
width: 29%;
margin:auto;
opacity: .7;
border: 2px solid rgb(19, 19, 20);
backdrop-filter: blur(500px);
}
.box{
color: black;
background-color: white;
width: 17%;
height: 15%;
border: 2px solid white;
border-radius: 40%;
display: flex;
justify-content: center;
align-items: center;
font-size: larger;
margin: 0.2rem .6rem;
cursor: pointer;
text-align: start;
}
#inp{
border-radius: 50px;
background-color:white;
display: block;
width: 85%;
margin: auto;
height: 100%;
border-bottom: none;
font-weight: bold;
}
#inp:focus{
width: 100%;
}
.box1{
height: 40px;
}
#spider{
font-style: italic;
font-weight: bold;
letter-spacing: 1.4px;
width: 16rem;
margin:3% auto;
color: white;
}
img{
height:65%;
}
#photo{
position: absolute;
top: 5%;
right: .1%;
transform: rotatey(180deg);
height: 90%;
}
.box:hover{
width: 20%;
height:17%;
transform: translate3d(1,1,1,50%);
}
.item{
/* text-align: center; */
border: none;
background-color: white;
font-weight: bold;
cursor: pointer;
/* width: 20%; */
}
@media screen and (max-width:400px){
.cal{
width:90%;
transform: translate(0%,30%);
}
.container{
height: 50vh;
}
}
@media screen and (min-width:401px) and (max-width:550px){
html{
font-size: 12px;
}
.cal{
width: 72%;
}
}
@media screen and (min-width:551px) and (max-width:850px){
.cal{
width: 47%;
}
}