-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuilding.css
More file actions
65 lines (52 loc) · 767 Bytes
/
Copy pathBuilding.css
File metadata and controls
65 lines (52 loc) · 767 Bytes
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
body {
background-color:#e6e7e8;
}
.ClickWindow {
cursor:pointer;
}
footer{
margin-top:0.25em;
clear:both;
}
.copyright{
text-align:left;
float:left;
margin-left:2.5em;
}
.credit{
text-align:right;
float: right;
margin-right:2.5em;
}
.copyright, .credit{
font-size:0.75em;
color: black;
font-family: 'Source Sans Pro', sans-serif;
font-weight:400;
}
.copyright a, .credit a{
text-decoration:none;
color:black;
font-weight:bold;
}
.copyright a:hover, .credit a:hover{
text-decoration:underline;
cursor:default;
}
@media screen and (max-width: 450px) {
body{
margin-top:-420px;
}
.credit{
float:left;
text-align:left;
clear:both;
margin: 0 0 0 1em;
}
.copyright{
margin-left:1em;
}
footer{
margin-top:-420px;
}
}