-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
91 lines (80 loc) · 1.49 KB
/
main.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
html, body {
background-color: rgb(50, 50, 50);
height: 100%;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: rgb(255, 255, 255);
}
div:focus {
outline: none;
}
#titleColumn {
width: 20%;
height: 100%;
float: left;
background-color: rgb(60, 60, 60);
}
#titleHeader {
width: 100%;
height: 30px;
background-color: rgb(60, 60, 60);
text-align: center;
line-height: 30px;
vertical-align: middle;
}
#documentContent {
width: 80%;
height: 100%;
float: right;
box-sizing: border-box;
padding: 30px;
}
.fileTitle {
width: 100%;
height: 30px;
text-align: center;
line-height: 30px;
vertical-align: middle;
border-top: 1px solid rgb(90, 90, 90);
}
.fileTitle:hover {
background-color: rgb(90, 90, 90);
cursor: pointer;
}
#menuButtons {
width: 20%;
background-color: rgb(60, 60, 60);;
height: 30px;
position: absolute;
bottom: 0%;
}
#newNoteButton {
width: 50%;
height: 29px;
float: left;
line-height: 29px;
vertical-align: middle;
text-align: center;
border-top: 1px solid rgb(90, 90, 90);
}
#saveNoteButton {
width: 50%;
height: 29px;
float: right;
line-height: 29px;
vertical-align: middle;
text-align: center;
border-top: 1px solid rgb(90, 90, 90);
color: rgb(120, 120, 120);
}
#newNoteButton:hover, #saveNoteButton:hover {
background-color: rgb(90, 90, 90);
cursor: pointer;
}
#newNoteNameWindow {
width: 100%;
height: 30px;
text-align: center;
background-color: rgb(90, 90, 90);;
display: none;
}