-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
116 lines (100 loc) · 1.69 KB
/
styles.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
* {
/*border: 1px dashed blue;*/
font-family: 'Source Sans Pro', sans-serif;
}
body {
background-color: #F8F8F8;
}
p {
margin: 15px 0 15px 0;
line-height: 1.4em;
}
li {
line-height: 1.8em;
}
#spacer {
width: 600px;
margin: auto;
height: 505px;
}
#container {
width: 300px;
margin: 170px auto 100px auto;
padding: 5px 10px 5px 10px;
background-color: white;
border-radius: 5px;
}
#titleBanner {
width: 300px;
color: white;
font-weight: 300;
font-size: 120%;
background-color: #66CCFF;
padding: 3px 10px 3px 10px;
margin: -5px -10px 5px -10px;
border-radius: 5px 5px 0 0;
}
#introBanner {
font-size: 90%;
font-weight: 300;
width: 300px;
padding: 18px 10px 15px 10px;
margin: -5px -10px 5px -10px;
background-color: white;
}
.dropdown {
background-color: white;
width: 290px;
margin: 0 -10px 0 -10px;
padding: 0 10px 0 20px;
font-size: 85%;
display: none;
}
.header {
font-size: 90%;
font-weight: 200;
padding: 0;
background-color: #EBF5FF; /* #F1FAFF */
margin: 0 -10px 0 -10px;
padding: 5px 10px 5px 10px;
opacity: 0.5;
cursor: pointer;
}
#gizmos span {
cursor: pointer;
color: #66CCFF
}
#gizmos span:hover {
text-decoration: underline;
}
#gizmosDropdown {
overflow: hidden;
width: 280px;
margin-left: 20px;
margin-bottom: 10px;
background-color: #F1FAFF;
border-radius: 5px 0 0 5px;
/* padding: 5px 5px -30px 5px; #F1FAFF */
display: none;
}
.new {
margin-left: 10px;
border-radius: 3px;
color: #008F6B;
border: 1px solid #7DEBA1;
background-color: #CDFFE6;
font-weight: 600;
}
a {
text-decoration: none;
color: #66CCFF;
}
a:hover {
text-decoration: underline;
}
#footer {
width: 350px;
margin: auto;
text-align: center;
color: #B2B2B2;
}