123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- .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("{{ site.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("{{ site.baseurl }}/static/img/sprite.png") no-repeat;
- background-position: 3px -127px;
- background-color: #4cc2e4;
- height: 36px;
- }
- a.link-apache {
- background-position: 2px -94px;
- margin-right: 3px;
- }
- a.link-github {
- background-position: 3px -127px;
- }
- .project-label {
- margin: 8px -8px 8px 8px;
- }
- }
- @media (min-width: $screen-sm-min) {
- li.first {
- a.link-apache {
- 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-apache {
- 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;
- }
- }
|