-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexport.css
More file actions
105 lines (105 loc) · 1.74 KB
/
export.css
File metadata and controls
105 lines (105 loc) · 1.74 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
*{
margin: 0;
padding: 0;
}
body{
background: black;
color: aliceblue;
font-family: Rubik;
}
.export-container{
position: absolute;
width: 312px;
height: 270px;
left: 560px;
top: 348px;
/* Charcoal Gray */
background: #201F24;
box-shadow: 0px 4px 18px -2px rgba(21, 21, 21, 0.83);
border-radius: 12px;
text-align: center;
}
.export-title{
position: absolute;
width: 150px;
height: 19px;
top: 5%;
left: 25%;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 19px;
color: #E4E4EC;
}
.input-title{
position: absolute;
width: 35px;
height: 14px;
left: 10%;
top: 20%;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 14px;
color: #66676C;
}
.export-name{
position: absolute;
width: 250px;
height: 20px;
left: 10%;
top: 30%;
/* Charcoal Gray */
background: #201F24;
box-shadow: 0px 4px 18px -2px rgba(21, 21, 21, 0.83);
border: 1px solid rgba(102, 103, 108, 0.12);
color: aliceblue;
border-radius: 10px;
}
input[type="text"]::placeholder {
text-align: center;
}
.quality-box{
position: absolute;
width: 57px;
height: 30px;
left: 10%;
top: 60%;
background: #9C14F1;
border: 1px solid #9C14F1;
box-sizing: border-box;
border-radius: 4px;
text-align: center;
font-style: normal;
font-weight: 500;
font-size: 12px;
color: #E4E4EC;
line-height: 24px;
cursor: pointer;
}
.cancel-button{
position: absolute;
width: 52px;
height: 19px;
left: 40%;
top: 85%;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 19px;
color: #66676C;
cursor: pointer;
}
.export-button{
position: absolute;
width: 52px;
height: 19px;
left: 70%;
top: 85%;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 19px;
color: #9C14F1;
cursor: pointer;
}