-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
executable file
·66 lines (56 loc) · 988 Bytes
/
stylesheet.css
File metadata and controls
executable file
·66 lines (56 loc) · 988 Bytes
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
* {
font-family: calibri, helvetica, sans;
position: relative;
}
#backdrop {
/*background-color: #99CCFF;*/
width: 75%;
margin-left: auto;
margin-right: auto;
}
#noteArea {
background-color: #99ccff;
border-radius: 5px;
padding: 10px 10px;
max-width: 800px;
}
#noteTitle{
color: grey;
}
.noteDiv{
background-color: white;
display: inline-block;
border-radius: 5px;
margin: 10px 5px;
padding-left: 5px;
padding-right: 5px;
}
.title{
background-color: white;
border-radius: 5px;
padding-left: 8px;
font-weight: bold;
}
.body{
background-color: white;
border-radius: 5px;
padding: 0 5px;
}
.prevTitle{
background-color: white;
border-radius: 5px;
padding-left: 8px;
font-weight: bold;
font-size: 40px;
}
.prevBody{
background-color: white;
border-radius: 5px;
padding: 0 5px;
font-size: 20px;
}
#previewArea{
}
#delBut{
margin: 0 0 10px 0;
}