-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (62 loc) · 1.21 KB
/
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
body {
font-family: Tahoma, Geneva, Verdana, sans-serif;
background-color: #84fab0;
background-image: linear-gradient(to top, #9890e3 0%, #b1f4cf 100%);
height: 100vh;
font-size: 18px;
margin: 0;
padding: 0;
}
canvas {
border: solid 5px;
border-color: goldenrod;
border-radius: 10px;
box-shadow: 14.8px 14.7px 14.4px rgba(0, 0, 0, 0.07),
118px 117px 115px rgba(0, 0, 0, 0.14);
}
header {
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
}
main {
width: fit-content;
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
}
select {
font-family: Arial, sans-serif;
font-size: 14px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
outline: none;
background-color: #fff;
color: #333;
cursor: pointer;
transition: border-color 0.3s ease;
}
select:hover,
select:focus {
border-color: #9890e3;
}
button {
font-family: Arial, sans-serif;
font-size: 18px;
padding: 10px 15px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
#canvas-container {
margin: 1rem 2rem;
}