-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (63 loc) · 1.09 KB
/
styles.css
File metadata and controls
71 lines (63 loc) · 1.09 KB
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
/*
* Globals
*/
/* Links */
a {
cursor: pointer;
}
a:hover {
text-decoration: none;
}
/*
* Base structure
*/
html,
body {
height: 100%;
min-height: 100%;
background-color: #333;
overflow: auto;
font-family: 'Lato' !important;
color: #001029;
background-image: url('assets/background.png');
text-align: center;
text-shadow: 0 .05rem .1rem rgba(0,0,0,.5);
}
.container {
max-width: 720px !important;
}
/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
width: 100%;
min-height: 100%;
box-shadow: inset 0 0 5rem rgba(0,0,0,.5);
background-color: white;
}
.cover-container {
padding: 10px 0px;
margin-right: auto;
margin-left: auto;
}
.main {
padding: 10px 0px;
color: #000;
}
.image-cropper {
max-width: 100px;
height: auto;
position: relative;
overflow: hidden;
margin: auto;
margin-bottom: 10px;
}
.image-cropper img{
display: block;
margin: 0 auto;
height: auto;
width: 100%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}