forked from scratchdesignstudio/info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
208 lines (179 loc) · 3.38 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
@font-face {
font-family: scratchFont;
src: local(scratch.tff);
}
html, body{
height: 100%;
font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
body {
background-color: #F2F2F2;
}
#header {
display: block;
position: fixed;
top:0;
left:0;
height:50px;
/*margin:auto;*/
z-index: 100000;
font-size: 2rem;
text-align: center;
width: 100%;
background: #9C0;
color: #FFF;
box-shadow: 0 0 3px hsla(0, 0, 0, .25);
border-bottom: 1px solid hsla(0, 0, 0, .1);
}
.inner > ul {
display: flex;
margin: 0 auto;
padding: 0;
height: 50px;
list-style: none;
flex-wrap: nowrap;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
.inner > ul > li {
display: inline-block;
position: relative;
vertical-align: middle;
margin-right: 30px;
margin-left: 10px;
}
/*#name {
font-family: scratchFont;
letter-spacing: 1.1px;
}*/
#content {
color: #6B6B6B;
background-color: inherit;
margin: 50px auto;
padding: 20px 0;
min-width: 75%;
width: 75%;
min-height: 768px;
}
p {
line-height: 1.5rem;
}
#sdsTitle {
/* font-family: scratchFont; */
font-size: 3em;
font-weight: bold;
/*color: #824DCB; Purple doesn't look great, other suggestions? */
}
#credits ul {
display: flex;
margin: 0;
padding: 0;
list-style: none;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
#credits li {
display: inline-block;
margin: 10px 0;
width: 188px;
text-align: center;
}
#credits li img {
margin: 10px 23px;
border: 2px;
border-style: solid;
border-radius: 50%;
border-color: #B3B3B3;
background-color: #fff;
padding: 20px;
width: 85px;
height: 85px;
}
#credits {
margin: 0 auto;
margin-top: 50px;
}
#credits h2 {
text-align: center;
}
a:link, a:visited {
color: #9C0;
text-decoration: none;
}
a:hover {
color: #669900;
text-decoration: none;
}
a:active {
color: #360;
text-decoration: underline;
}
/* entering dropdown zone */
/* dropdown button */
.dropdownButton {
height: 50px;
background-color: #9C0;
color: #FFFFFF;
padding: 0px 5px;
font-size: 1rem;
border: none;
cursor: pointer;
/* Vertically center text */
display: flex;
flex-align: center;
}
.dropdownIcon {
margin-right: 5px;
}
/* Dropdown button on hover & focus */
.dropdownButton:hover, .dropdownButton:focus {
background-color: #80B300;
outline: none;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #F2F2F2;
min-width: 160px; /* this value can be changed as needed */
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
cursor: pointer;
}
/* Links inside the dropdown */
.dropdown-content a {
color: #6B6B6B;
padding: 12px 16px;
font-size: 0.6em;
text-decoration: none;
display: block;
}
.dropdown-content a:not(:last-child) {
border-bottom: 1px solid #E6E6E6;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #B3B3B3;
}
.dropdown-content a:hover:not(:last-child){
border-bottom: 1px solid #B3B3B3;
}
/* Show the dropdown menu */
.show {
display: block;
}
.material-icons.md-18 { font-size: 18px; }
/*
ui-blue - #25AFF4
ui-orange - #F49D25
ui-gray - #F2F2F2
ui-dark-gray - #B3B3B3
ui-aqua - #26D9BB
ui-purple - #824DCB
ui-border - #D9D9D9
background-color: #FDFDFD
type-gray - #6B6B6B
splash-green - #9C0
splash-pink - #D2479D
*/