-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (60 loc) · 1.28 KB
/
Copy pathstyle.css
File metadata and controls
69 lines (60 loc) · 1.28 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #eff7f5;
background: linear-gradient(135deg,#153677,#4e085f);
}
/* Header section */
.header {
position: absolute;
top: 50px;
left: 50px;
display: flex;
align-items: center;
}
.logo {
width: 100px; /* Adjust the size of your logo */
height: 100px; /* Adjust the size of your logo */
margin-right: 20px; /* Space between logo and title */
}
.title {
font-size: 50px;
font-weight: bold;
font-style: inherit;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color:white; /* Change color if necessary */
}
.container {
text-align: center;
background-color: #ecbfdc;
}
#canvas {
border: 1px solid #ccc;
margin-top: 20px;
max-width: 100%;
max-height: 400px;
background: white;
}
.buttons {
margin-top: 20px;
}
button {
padding: 10px 20px;
margin: 10px;
cursor: pointer;
border: none;
background-color: #257d75;
color: white;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}