forked from francois2metz/360
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (45 loc) · 995 Bytes
/
style.css
File metadata and controls
56 lines (45 loc) · 995 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
/*
* Globals
*/
/* Add white border + rounded corners (optional but looks nice) */
.lead img {
border: 1px solid white;
border-radius: 2px; /* optional: soft corners */
box-sizing: border-box; /* ensures width=100 still includes border */
}
/* Add horizontal spacing between the images */
.lead > div {
margin-right: 3px; /* space between each image column */
}
.lead > div:last-child {
margin-right: 0; /* remove margin from the last one */
}
/* Links */
a,
a:focus,
a:hover {
color: #fff;
}
/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
color: #333;
text-shadow: none; /* Prevent inheritance from `body` */
background-color: #fff;
border: .05rem solid #fff;
}
/*
* Base structure
*/
html,
body {
height: 100%;
background-color: #333;
}
body {
display: flex;
color: #fff;
text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}