forked from AranchaFdz/dom-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (54 loc) · 853 Bytes
/
style.css
File metadata and controls
64 lines (54 loc) · 853 Bytes
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
body {
font-family: 'Arial', sans-serif;
padding: 20px;
}
.main-div {
padding: 10px;
margin-top: 20px;
background-color: #f5f5f5;
}
img {
max-width: 300px;
margin-top: 10px;
}
.img-logo {
width: 200px;
}
.old-div {
margin-top: 20px;
background-color: #e0e0e0;
padding: 10px;
}
button {
margin-top: 10px;
padding: 8px 15px;
background-color: #007bff;
color: #ffffff;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
input[type="text"] {
padding: 8px;
border: 1px solid #ccc;
}
ul {
margin-top: 15px;
}
#dropzone {
border: 2px dashed #ccc;
padding: 10px;
text-align: center;
margin-top: 10px;
}
#draggable {
width: 100px;
height: 100px;
background-color: #ffcc00;
color: #ffffff;
padding: 10px;
cursor: move;
}