-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnote.css
More file actions
69 lines (61 loc) · 1.34 KB
/
note.css
File metadata and controls
69 lines (61 loc) · 1.34 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
body {
background-color: #dbdbdb;
}
#backButton, #editButton, #deleteButton {
margin-top: 20px;
}
#deleteButton {
margin-left: 61px;
width: 100px;
height: 25px;
background-color: red;
color: white;
font-weight: bold;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 9px;
}
#editButton {
width: 100px;
margin-left: 61px;
height: 25px;
background-color: green;
color: white;
font-weight: bold;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 9px;
}
#backButton {
margin-left: 450px;
width: 100px;
height: 25px;
background-color: blue;
color: white;
font-weight: bold;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 9px;
}
p, header {
font-family: Verdana, Helvetica, sans-serif;
}
#note {
padding: 15px 15px 50px 15px;
border: 1px solid #bfbfbf;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
transition: all 0.5s ease-in;
overflow: hidden;
width: 500px;
margin-left: 400px;
height: 500px;
font-family: Verdana, Helvetica, sans-serif;
}
#head {
font-size: 150%;
font-weight: bold;
text-align: center;
}
#noteContent {
font-size: 125%;
}