File tree Expand file tree Collapse file tree 6 files changed +67
-1
lines changed Expand file tree Collapse file tree 6 files changed +67
-1
lines changed Original file line number Diff line number Diff line change 1
- @import url (" https://fonts.cdnfonts .com/css/gotham-rounded " );
1
+ @import url (" https://fonts.googleapis .com/css2?family=Gotham+Rounded:wght@300;400;500;600;700&display=swap " );
2
2
3
3
* {
4
4
margin : 0 ;
10
10
& ::-webkit-scrollbar-thumb {
11
11
}
12
12
}
13
+
14
+ * li {
15
+ list-style : none ;
16
+ }
17
+
18
+ * a {
19
+ text-decoration : none ;
20
+ color : inherit ;
21
+ }
22
+
23
+ body {
24
+ // theme colors
25
+ --accent :#58CA71 ;
26
+
27
+ --bg-dark :##E3E5E8 ;
28
+ --bg-light :##F2F3F5 ;
29
+
30
+ --text-dark : ;
31
+ --text-light : ;
32
+
33
+ --td-icon-color : ;
34
+ --td-icon-bg : ;
35
+
36
+ --techdegree-panel-bg :var (--bg-dark );
37
+ --project-panel-bg :var (--bg-light );
38
+ --project-grading-bg :#FFFFFF ;
39
+
40
+ }
41
+
42
+ body {
43
+ min-height : 100vh ;
44
+ overflow : hidden ;
45
+ }
Original file line number Diff line number Diff line change
1
+ .gradingtool {
2
+ display : none ;
3
+ @include break (medium ) {
4
+ display : flex ;
5
+ }
6
+ }
Original file line number Diff line number Diff line change
1
+ @import ' mobile-bumper' , ' grading-tool' ;
Original file line number Diff line number Diff line change
1
+ .mobile-bumper {
2
+ @include bg (red );
3
+ @include center-flex ;
4
+ height : 100vh ;
5
+ .container {
6
+ text-align : center ;
7
+ width : 90% ;
8
+ max-width : 500px ;
9
+ border-radius : 2rem ;
10
+ background-color : white ;
11
+ padding : 2rem ;
12
+ // treehouse logo bumper
13
+ img {
14
+ margin-bottom : 1.5rem ;
15
+ }
16
+ }
17
+ @include break (medium ) {
18
+ display : none ;
19
+ }
20
+ }
Original file line number Diff line number Diff line change 16
16
</ head >
17
17
< body >
18
18
19
+ < div class ="mobile-bumper ">
20
+ < div class ="container ">
21
+ < img src ="./frontend/assets/bumper.png " alt ="treehouse logo ">
22
+ < p > Let's make sure you're not on your mobile device incase you need to do some debugging. That way you can give the best experience for the student. Try opening this page up in your browser.</ p >
23
+ </ div >
24
+ </ div >
19
25
< div class ="gradingtool ">
20
26
<!-- techdegree panel -->
21
27
< div class ="panel ">
You can’t perform that action at this time.
0 commit comments