-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (104 loc) · 2.22 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
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans&family=Open+Sans&family=Poppins&family=Raleway&family=Roboto&family=Rubik&family=Sono&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color:#95BDFF;
}
.container {
background-color: white;
width: 65%;
position: absolute;
padding: 50px 30px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10px;
-webkit-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.6);
-moz-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.6);
box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.6);
}
.options {
display: flex;
/* justify-content: center; */
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
button {
display: flex;
justify-content: center;
align-items: center;
border: none;
outline: none;
border-radius: 2px;
background-color: rgb(252, 255, 255);
color: rgb(18, 18, 18);
height: 30px;
width: 30px;
font-family: "Poppins";
}
select {
padding: 5px;
border: 1px solid black;
border-radius: 2px;
font-family: "Poppins";
}
.input-wrapper {
display: flex;
align-items: center;
border-radius: 2px;
gap: 8px;
}
input[type="color"] {
appearance: none;
border: none;
background: none;
height: 30px;
width: 40px;
cursor: pointer;
box-shadow: none;
border-radius: 15px;
}
label {
font-family: "Poppins";
}
#edit-div {
margin-top: 10px;
padding: 20px;
border: 1px solid #dddd;
height: 50vh;
border-radius: 3px;
-webkit-box-shadow: 0.2px 0.2px 2px 0px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0.2px 0.2px 2px 0px rgba(0, 0, 0, 0.4);
box-shadow: 0.2px 0.2px 2px 0px rgba(0, 0, 0, 0.4);
overflow: scroll;
}
#edit-div::-webkit-scrollbar {
display: none;
}
.active {
background-color: rgb(210, 244, 255);
}
@media only screen and (max-width: 930px) {
.container {
background-color: white;
width: 90%;
height: 90%;
}
}
@media only screen and (max-width: 600px) {
.container {
background-color: white;
width: 100%;
height: 100%;
border-radius: none;
}
body{
background-color: white;
}
#edit-div {
height: 60%;}
}