forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_apps.scss
127 lines (105 loc) · 2.57 KB
/
_apps.scss
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
#apps {
p {
margin-bottom: 60px;
}
}
.apps {
overflow: hidden;
@include border-radius(3px);
.app-row {
background-color: $grey-light;
font-size: 14px;
line-height: 18px;
color: #808080;
border-bottom: 1px solid #d9d9d9;
width: 100%;
float: left;
&.apps-header {
background-color: $grey;
border-bottom: none;
color: #fff;
font-weight: 200;
.name-cell {
color: #fff;
font-weight: 200;
}
.downloads-cell {
color: #fff;
font-weight: 200;
font-size: 14px;
}
.app-cell {
height: auto;
}
}
.app-cell {
padding: 16px 16px 16px 0;
width: 15%;
float: left;
height: 100%;
height: 90px;
&:first-child {
padding-left: 16px;
}
> div {
@extend %vertical-align;
}
}
.img-cell {
width: 10%;
> div {
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: $grey;
height: 58px;
width: 58px;
}
}
.name-cell {
color: $grey;
font-weight: 600;
padding-left: 5px;
}
.desc-cell {
width: 19%;
font-weight: 200;
}
.downloads-cell {
font-size: 16px;
font-weight: 600;
color: $grey-medium;
width: 11%;
}
.rating-cell {
.star {
float: left;
color: $grey-medium;
font-size: 20px;
&.active {
color: $orange;
}
}
}
.tags-cell {
font-weight: 200;
}
.learn-cell {}
.btn {
font-weight: 600;
font-size: 14px;
height: 38px;
line-height: 36px;
padding: 0 30px;
border: 2px solid $grey-medium;
color: $grey-medium;
@extend %vertical-align;
@include border-radius(19px);
&:hover {
background-color: $orange;
border-color: $orange;
color: #fff;
}
}
}
}