-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.css
101 lines (93 loc) · 2.2 KB
/
master.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
#results-area-dashboard {
padding-left: 2.5%;
padding-right: 2.5%;
position: relative;
width: 95%;
}
#results-area-dashboard div.row {
color: rgba(220,220,220,1);
width: 100%;
min-width: 680px;
height: 140px;
margin: 10px 0px;
position: relative;
font-size: 2em;
font-family: Sans-serif, Verdana;
background: #353535; /* Old browsers */
box-sizing: border-box;
border-radius: 8px;
text-decoration: none;
box-shadow: 1px 5px 10px 0px #111 inset, 1px 5px 10px 0px #111;
-webkit-box-shadow: 3px 3px 8px 2px #111, inset -1px 3px 15px 0px #666;
}
/* Person Rank */
#results-area-dashboard div.rank {
text-align: center;
position: relative;
display: inline-block;
vertical-align: middle;
width: 50px;
height: 100%;
border-radius: 5px;
background: #222;
line-height: 140px;
}
/* Person Img */
#results-area-dashboard img {
position: relative;
display: inline-block;
vertical-align: middle;
padding: 5px;
margin: 0 15px;
max-width: 100px;
max-height: 100px;
border-radius: 50%;
background-color: #222;
box-shadow: 2px 5px 5px 0px #111;
-webkit-box-shadow: 2px 5px 5px 0px #111;
}
/* Person Name */
#results-area-dashboard div.row-person {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 15px;
text-shadow: 1px 5px 10px #111;
-webkit-text-shadow: 1px 5px 10px #111;
}
/* Person Delta */
#results-area-dashboard div.row-delta {
background: #256D85;
padding: 5px 10px;
border-radius: 15px;
font-size: 20px !important;
position: relative;
display: inline-block;
vertical-align: middle;
box-shadow: 1px 2px 5px #111;
-webkit-box-shadow: 1px 2px 5px #111;
text-shadow: 1px 1px 1px #444;
-webkit-text-shadow: 1px 1px 1px #444;
}
/* Person Score */
#results-area-dashboard div.row-score {
position: absolute;
text-align: right;
border-radius: 5px;
background-color: #222;
color: #eee;
padding: 20px;
right: 20px;
top: 50%;
transform: translateY(-50%);
box-shadow: 2px 5px 5px 0px #111;
-webkit-box-shadow: 2px 5px 5px 0px #111;
}
div.title {
color: #333;
border-bottom: 5px solid #444;
font-size: 3em;
margin: 10px 10px 30px 10px;
line-height: 135px;
font-family: Sans-serif, Verdana;
}