-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (37 loc) · 791 Bytes
/
style.css
File metadata and controls
44 lines (37 loc) · 791 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
body {
font-family: Arial, sans-serif;
background-color: #e6e0f8;
}
.container {
width: 600px;
margin: 30px auto;
background: white;
padding: 15px;
border: 1px solid #ccc;
}
h2 {
text-align: center;
}
.toolbar {
text-align: center;
margin-bottom: 10px;
}
.color-btn {
width: 25px;
height: 25px;
border: 1px solid #000;
margin: 3px;
cursor: pointer;
}
.color-btn[data-color="black"] { background: black; }
.color-btn[data-color="red"] { background: red; }
.color-btn[data-color="blue"] { background: blue; }
.color-btn[data-color="green"] { background: green; }
button {
padding: 5px 10px;
margin: 5px;
}
svg {
border: 1px solid black;
background-color: #f9f9f9;
}