File tree 2 files changed +117
-9
lines changed
2 files changed +117
-9
lines changed Original file line number Diff line number Diff line change
1
+ $color-bunting : #152347 ;
2
+ $color-gull : #99A1B3 ;
3
+ $color-bay : #39486F ;
4
+ $color-pink : #f0a ;
5
+ $color-white : #fff ;
6
+
7
+ * ,* :before ,* :after {box-sizing : border-box ;}
8
+
1
9
body {
2
- background : black ;
3
- color : white ;
10
+ background : $color-bunting ;
11
+ color : $color-gull ;
12
+ }
13
+
14
+ .header {
15
+ text-align : center ;
16
+
17
+ & -title {
18
+ color : $color-white ;
19
+ font-size : calc (3vw + 2rem );
20
+ }
21
+ }
22
+
23
+ .container {
24
+ width : 90vw ;
25
+ max-width : 60rem ;
26
+ margin : auto ;
27
+ }
28
+
29
+ .grid {
30
+ display : flex ;
31
+ flex-wrap : wrap ;
32
+ list-style : none ;
33
+ align-items : stretch ;
34
+ justify-items : flex-start ;
35
+ justify-content : center ;
36
+ padding : 0 ;
37
+ margin : 0 ;
38
+
39
+ > li {
40
+ flex : 0 0 calc ((100% - 3rem ) / 3 );
41
+ min-width : 18rem ;
42
+ background : $color-bay ;
43
+ padding : 1rem ;
44
+ margin : .5rem ;
45
+ }
46
+ }
47
+
48
+ .user {
49
+ display : grid ;
50
+ height : 100% ;
51
+ grid-template-columns : 1fr 2fr ;
52
+ grid-template-rows : 4fr 1fr ;
53
+ grid-template-areas : " avatar info "
54
+ " avatar progress" ;
55
+ grid-gap : .25rem 1rem ;
56
+
57
+ & -info {
58
+ grid-area : info;
59
+ font-size : 1.2rem ;
60
+ color : $color-white ;
61
+ }
62
+
63
+ & -name {
64
+ font-size : .8em ;
65
+ display : block ;
66
+ color : $color-gull ;
67
+ }
68
+
69
+ & -pseudo {
70
+ display : block ;
71
+ }
72
+
73
+ & -avatar {
74
+ grid-area : avatar;
75
+ width : 100% ;
76
+ height : auto ;
77
+ border-radius : 50rem ;
78
+ border : 2px solid $color-white ;
79
+ }
80
+
81
+ & -progress {
82
+ grid-area : progress ;
83
+ width : 100% ;
84
+ }
85
+ }
86
+
87
+ .progress {
88
+ -webkit-appearance : none ;
89
+ -moz-appearance : none ;
90
+ appearance : none ;
91
+ background : $color-bunting ;
92
+ border : 2px solid $color-bunting ;
93
+ color : $color-pink ;
94
+
95
+ & ::-webkit-progress-bar {
96
+ background : transparent ;
97
+ }
98
+
99
+ & ::-webkit-progress-value {
100
+ background : $color-pink ;
101
+ background : linear-gradient (80deg , #ffc337 0% , $color-pink 100% );
102
+ }
103
+
104
+ & ::-moz-progress-bar {
105
+ background : $color-pink ;
106
+ background : linear-gradient (80deg , #ffc337 0% , $color-pink 100% );
107
+ }
4
108
}
Original file line number Diff line number Diff line change 9
9
</head >
10
10
11
11
<body >
12
- <header >
13
- <h1 >HacktoberFest</h1 >
12
+ <header class = " header " >
13
+ <h1 class = " header-title " >HacktoberFest</h1 >
14
14
</header >
15
15
<div class =" container" >
16
- <ul >
16
+ <ul class = " grid " >
17
17
{% for user in usersData %}
18
18
<li >
19
- <img alt =" " src =" {{ user .avatarUrl }}" width =" 72" height =" 72" />
20
- <strong >{{ user .name }}</strong >
21
- @{{ user .login }}
22
- <progress max =" 4" value =" {{ user .prCount }}" > 70% </progress >
19
+ <div class =" user" >
20
+ <img class =" user-avatar" alt =" " src =" {{ user .avatarUrl }}" width =" 72" height =" 72" />
21
+ <div class =" user-info" >
22
+ <strong class =" user-speudo" >@{{ user .login }}</strong >
23
+ <span class =" user-name" >{{ user .name }}</span >
24
+ </div >
25
+ <progress class =" user-progress progress" max =" 4" value =" {{ user .prCount }}" >{{ user .prCount }} / 4</progress >
26
+ </div >
23
27
</li >
24
28
{% endfor %}
25
29
</ul >
You can’t perform that action at this time.
0 commit comments