-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
157 lines (133 loc) · 2.7 KB
/
home.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
*{
margin:0px ;
}
#navigationbar{
background-color: black;
display:flex;
justify-content: right;
height: 50px;
align-items: center;
position:sticky;
top:0px;
z-index: 100;
}
#navigationbar ul{
margin-right: 30px;
color:white ;
display:flex;
list-style: none;
}
#navigationbar ul li{
margin: 0px 10px;
border:2px solid white ;
padding: 3px;
border-radius:19px ;
}
#navigationbar ul li a{
padding: 13px;
text-decoration: none;
color:white ;
}
.trial{
height: 1100px ;
}
.maincenter{
height: 300px;
display: flex;
/* border: 2px solid coral; */
justify-content: center;
align-items: center;
/* background:#546159; */
background: rgb(0,0,0);
background: linear-gradient(129deg, rgba(0,0,0,1) 0%, rgba(93,90,90,1) 51%, rgba(0,0,0,1) 100%);
}
.content{
/* border:1px solid brown; */
height:422px ;
display:flex ;
justify-content: center;
/* background: rgb(0,0,0); */
/* background: linear-gradient(129deg, rgba(0,0,0,1) 0%, rgba(93,90,90,1) 51%, rgba(0,0,0,1) 100%); */
}
.item{
margin:30px ;
width:300px ;
height:366px;
background-color: rgba(255,255, 255, .05);
box-shadow: 0 0 5px rgba(0,0,0 ,0.15);
backdrop-filter: blur(10px);
border-radius: 10px ;
display: flex ;
justify-content: center;
z-index: 10 ;
transform-style: preserve-3d;
transition:transform 0.5s ;
/* background-color: black; */
}
.itemback{
visibility: hidden;
}
.item:hover{
transform: rotateY(180deg);
}
.itemback{
display: flex;
position: relative;
justify-content:center;
align-items: center;
transform-style: preserve-3d;
}
.item:hover .itemfront{
visibility:hidden;
}
.item:hover .itemback{
visibility: visible;
transform: rotateY(180deg);
}
.itemfront{
display: flex;
justify-content:center ;
position:relative ;
/* background-color:black */
}
.itemfront img{
height:200px;
width:auto;
position:fixed ;
left:70px;
margin-top:30px ;
}
.itemfront p{
position:fixed;
bottom:60px ;
left:70px;
text-align: center;
width: 150px;
}
.itemback ul{
/* margin: 4px; */
position: fixed;
width: 200px;
top:70px ;
}
.itmeback ul li{
/* margin:4px ; */
width: 50px;;
font-size: x-large;
}
.submit{
position:absolute ;
bottom:80px;
font-size: medium;
width: 150px;
height: 40px;
text-align: center;
right:-70px ;
background-image: linear-gradient(90deg, #1b1d1c, #546159);
color: #fdfbfb;
transition: all;
}
.submit:hover{
/* */
border:2px linear-gradient(90deg, #1b1d1c, #546159);;
}