-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
95 lines (86 loc) · 1.98 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
body {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: radial-gradient(circle at top, #0c43b0 , #212121);
padding: 20px;
font-family: 'Poppins', sans-serif;
font-size: 12px;
font-weight: 400;
}
.container {
background-color: #333;
padding: 1rem;
margin-top: 1rem;
width: 100%;
max-width: 300px;
margin: 1rem;
box-shadow: 0px 10px 15px rgb(0 0 0 / 10%);
border-radius: 3px;
}
.container:hover {
background-color: #3a3a3a;
animation-timing-function: ease-in-out;
transition-delay: 250ms;
}
.draggable {
/* border: 1px solid black;*/
color: #fff;
display: flex;
margin-bottom: 8px;
padding: 12px 17px;
/*background: #304B5F;*/
/*background: linear-gradient(350deg, #4f5152 0%, #212121 100%);*/
background: linear-gradient(350deg, #1649ad 0%, #212121 100%);
border-radius: 3px;
align-items: center;
justify-content: space-between;
cursor: move;
transition-delay: 650ms;
box-shadow: 0px 10px 15px rgb(0 0 0 / 10%);
}
.draggable:hover {
border: solid 1px #424242;
animation-timing-function: ease-in-out;
transition-delay: 250ms;
}
.draggable.dragging {
opacity: .5;
}
ul {
list-style-type: none;
margin-block-start: 0em;
margin-block-end: 0em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 0px;
}
input[type="text"] {
padding: 0.5rem;
/* background-color: #302e2e; */
background: #f9f9f9;
border: none;
border-radius: 3px;
width: 100%;
box-shadow: 0px 10px 15px rgb(0 0 0 / 10%);
}
button {
padding: 0.4rem;
border-radius: 3px;
border: none;
margin-left: 6px;
background-color: #333;
color: #fff;
cursor: pointer;
box-shadow: 0px 10px 15px rgb(0 0 0 / 10%);
}
.github {
/* position: absolute; */
position: fixed;
right:0px;
top: 0%;
z-index: 10;
}