-
Notifications
You must be signed in to change notification settings - Fork 0
/
Exp 2 style.css
114 lines (96 loc) · 2.11 KB
/
Exp 2 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
109
110
111
112
113
114
*{
margin: 0;
padding: 0;
font-family: 'poppins', sans-serif;
box-sizing: border-box;
background: #71d397d2;
} /*main background*/
/*colour of the bands*/
.container {
display: flex;
width: 100%;
min-height: 40vh;
background: #4e4e96;
align-items: center;
justify-content: center;
margin-bottom: 20px;
border: .5px solid #77dd77;
}
.buttons {
display: flex;
width: 100%;
min-height: 10vh;
background: #0b0423;
align-items: center;
justify-content: center;
margin-bottom: 20px;
border: .5px solid #2d9ece;
}
.box {
width: 275px;
min-height: 250px;
margin: 20px;
border: 2px dashed #fff;
}
.draggable {
width: 271px;
height: 190px;
object-fit: contain;
}
.draggable.dragging {
opacity: .5;
}
button {
position: relative;
display: inline-block;
margin: 10px;
padding: 10px 20px;
text-align: center;
font-size: 13px;
letter-spacing: 1px;
text-decoration: none;
color: #725AC1;
background: transparent;
cursor: pointer;
transition: ease-out 0.5s;
border: 2px solid #725AC1;
border-radius: 15px;
box-shadow: inset 0 0 0 0 #725AC1;
}
button:hover {
color: white;
box-shadow: inset 0 -100px 0 0 #725AC1;
}
button:active {
transform: scale(0.9);
}
.input {
border: none;
outline: none;
border-radius: 15px;
padding: 1em;
background-color: #ccc;
box-shadow: inset 2px 5px 10px rgba(0,0,0,0.3);
transition: 300ms ease-in-out;
}
.input:focus {
background-color: #dfede9;
transform: scale(1.04);
box-shadow: 13px 13px 100px #969696,
-13px -13px 100px #0b0423;
}
.label {
font-size: 20px;
letter-spacing: 1px;
text-decoration: none;
color: #725AC1;
background: transparent;
}
.caption {
font-size: 25px;
letter-spacing: 1px;
text-decoration: none;
color: #e6e3f0;
background: #725AC1;
text-align: center;
}