forked from OfficeDev/outlook-add-in-command-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.css
59 lines (52 loc) · 1.19 KB
/
App.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
/* Common app styling */
#content-header {
background: #2a8dd4;
color: #fff;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 80px; /* Fixed header height */
overflow: hidden; /* Disable scrollbars for header */
}
#content-main {
background: #fff;
position: fixed;
top: 80px;
left: 0;
right: 0;
bottom: 0;
bottom: 0; /* Same value as #content-footer's height */
overflow: auto; /* Enable scrollbars within main content section */
}
.padding {
padding: 15px;
}
#notification-message {
background-color: #818285;
color: #fff;
position: absolute;
width: 100%;
min-height: 80px;
right: 0;
z-index: 100;
bottom: 0;
display: none; /* Hidden until invoked */
}
#notification-message #notification-message-header {
font-size: medium;
margin-bottom: 10px;
}
#notification-message #notification-message-close {
background-image: url("Assets/Images/Close.png");
background-repeat: no-repeat;
width: 24px;
height: 24px;
position: absolute;
right: 5px;
top: 5px;
cursor: pointer;
}
.hidden {
display: none;
}