aboutsummaryrefslogtreecommitdiffstats
path: root/site/static/styles/scss/_contribute.scss
blob: 294f21281feba76bb79bf916990c647eeb2b30f1 (plain)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
.contribute-help {
    .sprite_img {
        position:relative;
        left: 0px;
        margin: 0;
        padding: 0;
        top:0;
        width: 85px;
        height: 85px;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .report-bug-icon {
        @extend .sprite_img;
        height:1em;
        width:1em;
        background-image: url($baseurl+"/static/img/bug_icon.svg");
        background-size: 2em 1em;
        display: inline-block;
    }

    a:hover .report-bug-icon {
        background-position: -1em 0;
    }

    .list {
        padding:0;
    }

    .list li {
        background:$gray-10;
        position: relative;
        list-style: none;
        margin-bottom: 16px;

        white-space:nowrap;
        text-overflow:ellipsis;
        overflow: hidden;
    }

    .well {
        .issue-links {
            li {
                margin: 10px 0px;
                a {
                    color: $brand-primary;
                    display: inline;
                    padding: 0px;
                    &:hover {
                        color: $brand-primary-darker;
                        text-decoration: underline;
                    }
                }
            }
        }
    }

    .platforms-list {
        li {
            a {
                float: right;
                -webkit-transition: background 0.25s linear;
                -moz-transition: background 0.25s linear;
                transition: background 0.25s linear;
                width: 36px;
                background: url($baseurl+"/static/img/sprite.png") no-repeat;
                background-position: 3px -127px;
                background-color: #4cc2e4;
                height: 36px;
            }

            a.link-agl {
                background-position: 2px -94px;
                margin-right: 3px;
            }

            a.link-github {
                background-position: 3px -127px;
                background-color: #9b4ce4;
            }

            .project-label {
                margin: 8px -8px 8px 8px;
            }
        }

/*        @media (min-width: $screen-sm-min) {
            li.first {
                a.link-agl {
                    width: 115px;
                }

                a.link-github {
                    width: 90px;
                }

                .project-label {
                    width: 35%;
                }

                .project-links {
                    width: 65%;
                }
            }
        }
*/
        @media (max-width: $screen-xs-max) {
            li {
                a {
                    display: inline-block;
                    float: none;
                }

                a.link-agl {
                    background-position: 2px -94px;
                    width: 108px;
                    margin-right: 3px;
                }

                a.link-github {
                    background-position: 3px -127px;
                    width: 90px;
                }

                .project-label{
                    text-align: center;
                    padding: 12px;
                    margin: 0px;
                }

                .link-box {
                    width: 49.5%;
                    display: inline-block;
                    text-align: center;
                    background-color: $brand-primary;
                    padding-top: 4px;
                }
            }
        }
    }

    .contribute-get-started-steps {
        padding-left: 17px;
        counter-reset: contribute-steps-counter;
        > li {
            margin-bottom:.5em;
        }
    }

    table {
        @extend .table;
        @extend .table-bordered;
    }
}