-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·91 lines (76 loc) · 1.31 KB
/
styles.css
File metadata and controls
executable file
·91 lines (76 loc) · 1.31 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
82
83
84
85
86
87
88
89
90
91
* {
font-family: sans-serif, arial;
}
body {
padding: 0px;
margin: 0px;
min-width: 1200px;
}
a, a:visited {
text-decoration: none;
color: #E19807;
}
a.active {
text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
color: #E19807
}
#notes-list {
width: 300px;
float: left;
border-right: 1px solid lightgrey;
height: 100%;
background-image: url("images/ListBg.png");
background-repeat: repeat;
overflow: none;
}
.notes-list-item-title {
float: left;
width: 150px;
}
.notes-list-item-timestamp {
float: right;
color: #AE9F72;
width: 80px;
}
#notepad {
background-image: url('images/PadBg.png');
background-repeat: repeat;
height: 100%;
}
.notes-list-item {
width: 300px;
height: 30px;
border-bottom: 1px dashed #EDE1B3;
padding: 5px;
}
#timestamp {
font-weight: normal;
color: grey;
height: 10%;
}
#content {
border: none;
background-image: url('images/PadBg.png');
background-repeat: repeat;
font-size: 18px;
height: auto;
width: auto;
}
.left {
float: left;
}
#tinymce-holder {
}
.right {
float: right;
}
.header {
height: 25px;
font-size: 20px;
font-weight: lighter;
color: #E19807;
border-bottom: 1px solid #EDE1B3;
padding: 10px;
}