-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Julian Vianna
authored and
Julian Vianna
committed
Jan 23, 2019
1 parent
c7ac1ae
commit 4fa8b70
Showing
6 changed files
with
79 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
.tiles-bts { | ||
display: block; | ||
position: relative; | ||
width: calc(33.3% - 12px); | ||
height: 25vh; | ||
height: 0; | ||
border: solid 1px #000000; | ||
padding: 4px; | ||
padding-bottom: 28%; | ||
margin: 6px; | ||
background: #ffffffd9; | ||
font-size: 5rem; | ||
|
||
.tile-value { | ||
position: absolute; | ||
left: calc(50% - 25px); | ||
top: calc(50% - 46px); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
.line { | ||
position: absolute; | ||
width: 4px; | ||
height: 100%; | ||
background: rgb(45, 171, 102); | ||
z-index: 999; | ||
box-shadow: 0px 0px 10px 1px #000; | ||
|
||
&.c0 { | ||
left: 17.4%; | ||
} | ||
|
||
&.c1 { | ||
left: 50%; | ||
} | ||
|
||
&.c2 { | ||
left: 84%; | ||
} | ||
|
||
&[class*="r"] { | ||
transform: rotate(90deg); | ||
left: 50%; | ||
} | ||
|
||
&.r0 { | ||
top: -34%; | ||
} | ||
|
||
&.r3 { | ||
top: 0%; | ||
} | ||
|
||
&.r6 { | ||
top: 33%; | ||
} | ||
|
||
&[class*="d"] { | ||
left: 50%; | ||
} | ||
|
||
&.d0 { | ||
transform: rotate(-46deg); | ||
} | ||
|
||
&.d2 { | ||
transform: rotate(46deg) | ||
} | ||
} |