-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtool.css
More file actions
65 lines (57 loc) · 1.16 KB
/
Copy pathtool.css
File metadata and controls
65 lines (57 loc) · 1.16 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem;
}
#button-row {
width: 100%;
max-width: 800px;
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
padding: 1rem;
background: rgb(255, 255, 255);
border-radius: 980px;
}
button {
padding: 1.2rem 3rem;
font-size: 1.2rem;
background-color: hsl(210, 100%, 45%);
color: white;
border: none;
border-radius: 980px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
letter-spacing: -0.2px;
text-align: center;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
button:hover {
background-color: hsl(210, 100%, 46%);
transform: scale(1.02);
}
button:active {
transform: scale(0.98);
}
#tool {
position: absolute;
top: 150px;
border-radius: 8px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
#demo {
position: absolute;
left: 0;
top: 0;
}