-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGalleryThemes.css
122 lines (100 loc) · 1.64 KB
/
GalleryThemes.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
.gallery .control-button {
color: #ccc;
color: rgba(255, 255, 255, 0.4);
}
.gallery .control-button:hover {
color: white;
color: rgba(255, 255, 255, 0.8);
}
/*
Theme controls how everything looks in Gallery CSS.
*/
.gallery {
position: relative;
}
.gallery .item {
height: 100%;
overflow: hidden;
text-align: left;
margin:0 auto;
}
.gallery .controls {
position: absolute;
margin-top:1em;
width: 100%;
text-align: center;
}
.gallery .control-button {
display: inline-block;
margin: 0 .02em;
font-size: 3em;
text-align: center;
text-decoration: none;
transition: color .1s;
}
/*my styles*/
body{
background-color:#c1e553;
}
.RoRo, .Willie{
margin: 0 auto;
position:relative;
}
h1{
font-family: 'Source Sans Pro', sans-serif;
font-weight:200;
padding-left:1em;
}
.copyright{
text-align:left;
float:left;
margin-left:3em;
}
.credit{
text-align:right;
float: right;
margin-right:3em;
}
.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;
}
footer{
margin-top:3em;
clear:both;
}
@media screen and (max-width: 450px) {
.credit{
float:left;
text-align:left;
clear:both;
margin: 0 0 0 1em;
}
.copyright{
margin-left:1em;
}
footer{
margin-top:2em;
}
h1{
margin-bottom:0em;
padding-left:0.5em;
}
.gallery .controls {
position: absolute;
margin-top:-0.75em;
width: 100%;
text-align: center;
}
}