-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote2.css
More file actions
80 lines (76 loc) · 1.39 KB
/
note2.css
File metadata and controls
80 lines (76 loc) · 1.39 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
body{
background-color: #A75767;
align-content: center;
}
#sticky-text:focus {
background-color:#9AD48E;
}
#lab{
background-color: #4EAE90;
border: none;
color: white;
padding: 5px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#sticky-text {
background-color:lightgray;
border:none;
box-shadow:4px 4px 0px black;
box-sizing:border-box;
font-size: 20px;
font-weight:italic;
height:50px;
letter-spacing:2px;
outline:none;
text-indent:10px;
transition:background-color .5s;
width:calc(100% - 160px);
}
#para{
background-color:yellow;
width:30%;
height:200px;
box-shadow: 3px 3px 0px black;
font-size: 20px;
font-weight:italic;
text-indent:30px;
text-align: justify;
}
#para:hover{
background-color: white;
}
#delnote{
background-color: red;
border: none;
color: white;
padding: 5px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#editnote{
background-color: purple;
border: none;
color: white;
padding: 5px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#editnote:hover{
background-color: pink;
}
#delnote:hover{
background-color: orange;
}