This repository has been archived by the owner on Mar 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
131 lines (131 loc) · 2.25 KB
/
style.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* Fonts */
* {
font-family: 'Open Sans', Helvetica, Verdana, Arial, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
font-family: geosanslight-nmsregular, 'Open Sans', Helvetica, Verdana, Arial, sans-serif;
}
/* Main layout */
header {
display: block;
width: 100%;
height: 80px;
position: fixed;
top: 0;
left: 0;
background-color: #A4443C;
color: #FFFFFF;
overflow: hidden;
z-index: 3;
box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
}
body {
margin-top: 80px;
background-color: #F7F7F7;
}
main {
background-color: #FFFFFF;
margin: 0 auto;
width: auto;
padding: 16px;
}
.center {
margin: 0 auto;
text-align: center;
}
button[type=button] {
color: #FFFFFF;
background-color: #A4443C;
border: 1px solid #833630;
border-bottom: 2px solid #833630;
border-radius: 2px;
padding: 4px;
font-size: 0.75em;
display: inline-block;
}
button[type=button]:hover {
text-decoration: none;
background-color: #933d36;
border-color: #75302b;
}
button[type=button]:active {
text-decoration: none;
background-color: #843630;
border-color: #692b26;
}
button img {
max-width: 1em;
max-height: 1em;
}
#genMD {
padding: 10px;
font-size: 2em;
margin: 10px auto;
display: block;
}
#close {
margin-right: 10px;
position: absolute;
right: 0;
}
.detailContainer,
.inputContainer {
position: relative;
}
.detail > button.remove {
position: absolute;
right: 0;
top: 0;
display: block;
}
.input > button.remove {
margin-left: 10px;
}
#modalContainer {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000000;
background-color: rgba(0, 0, 0, 0.37);
z-index: 2;
}
#modal {
position: relative;
max-width: calc(53em + 40px);
margin-top: 80px !important;
/* Header size */
overflow-y: scroll;
max-height: calc(100vh - 120px);
/* - Header + padding */
border-bottom: 0;
margin: 10px auto;
background-color: #fff;
padding: 10px 20px 20px;
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
}
blockquote {
background-color: #ddd;
padding: 10px;
border-radius: 2px;
margin-top: 10px;
font-family: monospace;
}
blockquote * {
font-family: monospace;
}
@media all and (min-width: 800px) {
header h1 {
margin-left: 50px;
}
main {
width: calc(53em + 40px);
}
}