-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (85 loc) · 1.63 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
/*
* Style sheet for the popup
*/
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900);
@import url(https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);
body {
background-image: url('background.jpg');
background-position: center;
background-size: cover;
border-radius: 5px;
min-width: 139px;
min-height: 50px;
font-family: 'Roboto', sans-serif;
font-weight: medium;
/*font-family: "Trebuchet MS";*/
font-size: 13pt;
color: white;
white-space: nowrap;
}
/*
* Search page
*/
#inputForm{
padding-top: 13px;
padding-bottom: 16px;
}
#userInput{
text-align: center;
font-size: 10pt;
color: white;
background-color: rgba(58, 141, 148, .3);
border: 0px;
border-radius: 4px;
width: 98.5%;
}
.result-player{
padding: 4px;
}
.result-player>.inner{
padding: 4px;
height: 46px;
/*background-color: rgba(192, 192, 192, .3);*/
background-color: rgba(100,100,100,.4);
}
.result-player>.inner:hover{
cursor: pointer;
background-color: rgba(58, 141, 148, .4);
}
.result-player .avatar{
float: left;
margin-right: 5px;
}
.image-container-avatar>img{
height: 46px;
width: 46px;
}
.result-player .identity{
padding-right: 51px;
}
.fa-check:before{
content: "\ \f00c";
color: #68d1f6;
}
/*
* Stats page
*/
#statsPage{
text-align: center;
padding-top: 10px;
margin-top: -10px;
background-color: rgba(0, 0, 0, .3);
}
#steamName:hover{
cursor: pointer;
text-decoration: underline;
}
#backButton{
background-color: rgba(24, 123, 150, .7);
border: 0px;
color: white;
cursor: pointer;
border-radius: 7px;
padding-right: 10px;
padding-left: 10px;
}