-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha.css
47 lines (42 loc) · 821 Bytes
/
a.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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.story-editor {
display: flex;
flex-direction: column;
width: 600px;
border: 1px solid #ccc;
border-radius: 8px;
overflow: hidden;
}
.story-canvas {
background-color: #f0f0f0;
height: 400px;
position: relative;
overflow: hidden;
}
.toolbox {
display: flex;
justify-content: center;
padding: 10px;
background-color: #fff;
border-top: 1px solid #ccc;
}
.toolbox button {
margin: 0 10px;
padding: 8px 16px;
font-size: 14px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.toolbox button:hover {
background-color: #45a049;
}