-
The court is a rectangle measuring 13.40m x 6.10m, surrounded by a rectangular free zone at least 2m wide.
-
The court is defined by two sidelines and two end lines, with a center line connecting the two sidelines directly below the net, dividing the court into two equal halves.
This gist: https://gist.github.com/lucamug/8842415a63935fb5b58e133cfb2566ed
Clone and copy the content of the src folders of these two repos in your project
https://github.com/mdgriffith/elm-ui/tree/2.0
This file contains hidden or 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
| .parent | |
| { height: 100% | |
| ; display: flex | |
| ; justify-content: center | |
| ; align-items: center | |
| } |
This file contains hidden or 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
| image : | |
| List (Attribute msg) | |
| -> { src : String, description : String } | |
| -> Element msg |
This file contains hidden or 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
| img : | |
| List (Attribute msg) | |
| -> List (Html msg) | |
| -> Html msg |
This file contains hidden or 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
| div : List (Attribute msg) -> List (Html msg) -> Html msg | |
| text : String -> Html msg |
This file contains hidden or 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
| function add(a) { | |
| return function(b) { | |
| return a + b; | |
| } | |
| } |
This file contains hidden or 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
| add = a => b => a + b // a => b => a + b | |
| add(1) // b => a + b | |
| add(1)(2) // 3 |
This file contains hidden or 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
| add a b = a + b |
This file contains hidden or 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
| proc() { | |
| proc1(); | |
| proc2(); | |
| proc3(); | |
| } |
NewerOlder