-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (99 loc) · 2.73 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
@import url(http://fonts.googleapis.com/css?family=Varela+Round);
@import url(http://necolas.github.io/normalize.css/3.0.2/normalize.css);
body {
background: #3b3b3b;
text-align: center;
margin: 10% auto;
width: 25%;
max-width: 750px;
min-width: 300px;
padding: 0 5%;
color: #000;
font-family: 'Varela Round', Helvetica, serif;
font-size: 24px;
}
#banner {
background: #D5DDE4;
padding: 5% 0;
}
#logo {
width: 80%;
margin: 0 10% 0 10%;
}
#name {
padding: 0 5%;
font-size: 48px;
}
#avatar {
width: 50%;
border-radius: 50%;
margin: -5% 25% 5% 25%;
}
#username {
margin: 5% auto;
width: 100%;
}
#profile {
background: #fff;
border-radius: 5px;
border: 1px solid #D5DDE4;
padding: 0;
margin: -10% 0 0 0;
}
#stats {
margin: 0 auto;
padding: 0;
}
#stats li {
display: inline-block;
margin: 0 5px;
font-weight: bold;
}
#trophies {
padding: 0;
}
#trophies li {
display: inline-block;
width: 100%;
padding: 5px 0;
margin: 0;
border-top: 1px solid #D5DDE4;
list-style-type: none;
position: relative;
}
#trophies li img {
float: left;
width: 25%;
padding: 15px;
margin-left: 10% auto;
clear: both;
}
#trophies li span {
display: inline;
font-weight: bold;
padding-left: 75px;
padding-right: 15px;
margin-left: 25px;
position: absolute;
top: 40%;
bottom: 40%;
right: 20px;
}
#bio {
background: #fff;
border-radius: 5px;
border: 1px solid #D5DDE4;
padding: 0 5%;
margin: 10% 0 0 0;
text-align: left;
}
a, a:visited {
color: #5FB6E1;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
span {
color: #000;
}