-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (90 loc) · 1.77 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (90 loc) · 1.77 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background: #3a3a3a;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 40px 20px;
}
.container {
width: 100%;
max-width: 480px;
background: rgb(104, 104, 104);
padding: 25px;
border-radius: 14px;
box-shadow: 0 5px 18px rgba(0, 0, 0, 0.39);
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}
.title h1 {
font-size: 24px;
font-weight: 700;
}
.title h1 span {
font-size: 16px;
font-weight: 800;
margin-left: 5px;
color: #ffffff;
}
#generate {
background: #111;
color: white;
border: none;
padding: 10px 18px;
border-radius: 8px;
cursor: pointer;
transition: 0.2s;
cursor: pointer;
}
#generate:hover {
opacity: 0.8;
transform: translateY(-5px);
}
.palette {
display: flex;
flex-direction: column;
gap: 20px;
}
.color {
background: #fafafa;
border-radius: 12px;
padding: 15px;
display: flex;
align-items: center;
gap: 15px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: all 0.3s ease-in-out;
}
.color:hover {
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.603);
}
.preview {
width: 60px;
height: 60px;
border: 0;
border-radius: 10px;
background: #ccc;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.3s ease-in-out;
cursor: pointer;
}
.preview:hover {
margin-left: 20px;
}
.hex-value {
font-size: 18px;
font-weight: 600;
color: #333;
}