blob: 3d67d243a1bd9bbaace8005de1c585981404386e (
plain)
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
|
<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
</script>
<style lang="less">
#app{
width: 100%;
height: 100%;
color: #fff;
background: radial-gradient(circle, #10215C 0%, #070F29 100%);
}
.el-select-dropdown{
background-color: #ffffff;
.el-scrollbar{
background-color: #ffffff;
::v-deep .el-select-group__wrap{
border-color: #ffffff;
}
}
}
.el-image-viewer__img{
width: 70%;
height: auto;
backdrop-filter: brightness(40px);
}
.el-image-viewer__wrapper{
/*margin-top: 300px;*/
.el-image-viewer__close{
margin-top: 15%;
margin-right: 7%;
/*background-color: #00F1FF;*/
i{
color: #00F1FF;
}
}
.el-image-viewer__prev{
margin-left: 13%;
i{
color: #00F1FF;
}
}
.el-image-viewer__next{
margin-right: 13%;
i{
color: #00F1FF;
}
}
}
.el-image-viewer__canvas{
/*margin-top: 2%;*/
/*margin-top: 10%;*/
/*margin-left: 15%;*/
backdrop-filter: blur(20px);
/*width: 70%;*/
/*height: auto;*/
}
</style>
|