Skip to content

Instantly share code, notes, and snippets.

@anovsiradj
Last active December 6, 2020 18:23
Show Gist options
  • Select an option

  • Save anovsiradj/d773a1ba2d9630dcf32ca62e42a6fbfb to your computer and use it in GitHub Desktop.

Select an option

Save anovsiradj/d773a1ba2d9630dcf32ca62e42a6fbfb to your computer and use it in GitHub Desktop.

Revisions

  1. anovsiradj revised this gist Dec 6, 2020. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions README.mkdn
    Original file line number Diff line number Diff line change
    @@ -16,6 +16,8 @@
    #movie_player video
    {
    transform: scale(2);
    transform: scale(2) rotate(-90deg); // left
    transform: scale(2) rotate(90deg); // right
    top: 100px !important;
    left: 0px !important;
    }
  2. anovsiradj revised this gist Dec 6, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion README.mkdn
    Original file line number Diff line number Diff line change
    @@ -15,7 +15,7 @@
    ```css
    #movie_player video
    {
    transform: scale(1.5);
    transform: scale(2);
    top: 100px !important;
    left: 0px !important;
    }
  3. anovsiradj revised this gist Dec 6, 2020. 1 changed file with 4 additions and 2 deletions.
    6 changes: 4 additions & 2 deletions README.mkdn
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,8 @@
    # dailymotion

    ```css
    #player-body video {
    #player-body video
    {
    transform: scale(2);
    top: 100px !important;
    left: 0 !important;
    @@ -12,7 +13,8 @@
    # youtube

    ```css
    #movie_player video {
    #movie_player video
    {
    transform: scale(1.5);
    top: 100px !important;
    left: 0px !important;
  4. anovsiradj revised this gist Dec 6, 2020. 1 changed file with 15 additions and 4 deletions.
    19 changes: 15 additions & 4 deletions README.mkdn
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,20 @@

    # dailymotion

    ```css
    #player-body video {
    transform: scale(2);
    top: 100px !important;
    left: 0 !important;
    transform: scale(2);
    top: 100px !important;
    left: 0 !important;
    }
    ```

    # youtube

    ```css
    #movie_player video {
    transform: scale(1.5);
    top: 100px !important;
    left: 0px !important;
    }
    ```
    ```
  5. anovsiradj created this gist Dec 6, 2020.
    9 changes: 9 additions & 0 deletions README.mkdn
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    # dailymotion

    ```css
    #player-body video {
    transform: scale(2);
    top: 100px !important;
    left: 0 !important;
    }
    ```