-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcute-green.css
More file actions
81 lines (80 loc) · 2.3 KB
/
cute-green.css
File metadata and controls
81 lines (80 loc) · 2.3 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
input.cute-green {
background-color: #43b363;
opacity: 0.8;
border: 2px solid #399a3e;
margin: 5px;
border-radius: 15px;
padding: 10px 15px;
font-family: 'Choco', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #000000;
max-width: 100%;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
input.cute-green:focus {
background-color: #4ec367;
border-color: #5ab149;
transform: scale(1.02);
outline: none;
}
input.cute-green::placeholder {
color: #000000;
opacity: 0.6;
}
.cute-green:hover {
background-color: #67db71;
}
.cute-green-button {
--tap-highlight-color: hsla(350, 71%, 66%, 0.3);
--touch-callout: none;
background-color: #b0e57c;
text-decoration: none;
border: 2px solid #8bc34a;
border-radius: 15px;
padding: 10px 20px;
display: inline-block;
font-family: 'Choco', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #000000;
cursor: pointer;
text-align: center;
margin: 3px;
transition: background-color 0.3s ease, transform 0.1s ease , border-color 0.3s ease;
}
a.cute-green-button {
transition: background-color 0.3s ease;
}
a.cute-green-button:active {
transform: unset;
}
.cute-green-button:hover {
background-color: #9cc961;
}
.cute-green-button:active {
background-color: #a8db67;
transform: scale(.94, .94)
}
.cute-green {
background-color: #4dcd71;
opacity: 0.8;
caret-color: #e66a7f;
border: 2px solid #4ac350;
border-radius: 15px;
padding: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
color: #000000;
text-align: center;
transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.cute-blue {
background-color: #5ACBCD;
opacity: 0.8;
caret-color: #e66a7f;
border: 2px solid #49ABC3;
border-radius: 15px;
padding: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
color: #000000;
text-align: center;
transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}