forked from hbcbh1999/mimic-bloomberg-menu-no-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
42 lines (42 loc) · 785 Bytes
/
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
@import url('/reset.css');
:root {
min-height: 100%;
--key-1: aquamarine;
--key-2: dodgerblue;
--key-1-alpha: rgba(127,255,212,0.6);
--key-2-alpha: rgba(30,144,255,0.6);
--shadow: rgba(192,192,192,0.6);
--title-font: Garamond;
}
body {
background: linear-gradient(var(--key-1), var(--key-2));
font-family: "Times", serif;
}
h1,h2,h3,h4,h5,h6,legend {
font-family: var(--title-font);
}
legend {
font-size: 150%;
padding: 2px 1rem 3px;
}
fieldset,
fieldset legend {
background: white;
border: 1px solid grey;
}
legend {
box-shadow: 1px 1px 1px 0 var(--shadow);
}
fieldset {
box-shadow: 0px 1px 1px 0 var(--shadow);
}
main {
display: block;
position: relative;
}
main.app {
display: table;
min-width: 300px;
max-width: 667px;
margin: 0 auto;
}