๐Ÿ“ฆ derek-adair / scoreboard

๐Ÿ“„ main.scss ยท 95 lines
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$iconSpritePath: "../images/glyphicons-halflings.png";
$iconWhiteSpritePath: "../images/glyphicons-halflings-white.png";

@import "bootstrap-sass/lib/bootstrap";
@import "bootstrap-sass/lib/responsive";

/* Colors 
@black:                 #000;
@grayDarker:            #222;
@grayDark:              #333;
@gray:                  #555;
@grayLight:             #999;
@grayLighter:           #eee;
@white:                 #fff;

@blue:                  #049cdb;
@blueDark:              #0064cd;
@green:                 #46a546;
@red:                   #9d261d;
@yellow:                #ffc40d;
@orange:                #f89406;
@pink:                  #c3325f;
@purple:                #7a43b6;

/* Bootstrap Overrides */
body {
    background: #fafafa;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
}

.accordion-inner { border-top: none; }

.hero-unit {
    background-color: #eee;
    border-radius: 6px;
    padding: 15px;
    background-color: #B8862C;
    margin-bottom: 20px;
}
#user-accordion .hero-unit {
    font-size: 12px;
    font-weight: 200;
    line-height: 60px;
}

.hero-unit h1 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1px;
    display: inline;
    margin-left: 10px;
    margin-bottom: 5px;
}

.avatar {
    border-radius: 5px;
    float: left;
}
.user-header{
    background-color: #fafafa;
    border-radius: 4px;
    padding: 10px;
    height: 50px;
    box-shadow: 0 1px 2px;
}
.wins{
    float: right;
    font-size: 26px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    text-align: center;
    color: #fafafa;
    border-color: black;
    background-color: #222;
}

.amount-to-add{
    font-weight: bold;
    font-size: 100px;
}

.positive{color: green;}
.negative{color: red;}
.even {color: black;}

.scoreboard{
    padding-left: 19%;
    padding-right: 19%;
}

.active {background-color: white;}