forked from ShubhamKrSingh21/Magic-Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (57 loc) · 1010 Bytes
/
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
:root
{
--dark:#374151;
--darker:#1F2937;
--darkest:#111827;
--gray:#687280;
--light:#EEE;
--pink:#EC4899;
--purple:#8B5Cf6;
}
.myBtn
{
border: none;
color: var(--pink);
font-size: 1.25rem;
font-weight: 700;
background: linear-gradient(to right,var(--pink),var(--purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
cursor: pointer;
transition: 0.4s;
}
label,h1
{
color: var(--light);
}
body{
background-color: var(--darkest);
}
#btn1 {
background-color: rgb(0, 255, 255);
}
#btn2 {
background-color: rgb(255, 215, 0);
}
#btn3 {
background-color: rgb(255, 105, 180);
}
.color-button {
width: 20px;
height: 20px;
border-radius: 20%;
border: none;
cursor: pointer;
}
.color-button:focus {
outline-style:solid;
box-shadow: 0 0 0 2px #0d6efd;
}
.select-text {
float: left;
margin-right: 5px;
font-weight: bold;
}
.color-select-group {
float: left;
}