Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@mixin absolute #3

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
331db0b
Create style.scss
henur Oct 22, 2017
14d235e
@mixin absolute
henur Oct 24, 2017
1d558f3
@mixin absolute 2
henur Oct 24, 2017
f113087
@mixin lefttop
henur Oct 24, 2017
817356d
@mixin lefttop 2
henur Oct 24, 2017
b6bc563
@mixin four
henur Oct 24, 2017
3638956
blockquote, q
henur Oct 24, 2017
23dbb1c
a.option, .info a &:hover
henur Oct 24, 2017
3ee8d1a
Many things
henur Oct 24, 2017
f57260d
a.option, .info a &:active
henur Oct 24, 2017
e2fa8c4
@mixin bottonright
henur Oct 24, 2017
2eb97c3
#prefsButton, #statsButton &:hover
henur Oct 24, 2017
59c42e8
crate
henur Oct 24, 2017
7ca198c
Update style.scss
henur Oct 24, 2017
1599c78
Many things
henur Oct 24, 2017
f0b2eda
.price
henur Oct 24, 2017
a0823cf
.row
henur Oct 25, 2017
2ebbc47
#tooltip .q
henur Oct 25, 2017
98cf411
#game.onMenu, #sectionLeft
henur Oct 25, 2017
226f90c
#section&
henur Oct 29, 2017
d52b7f4
#cookie&
henur Oct 29, 2017
61e4b5a
Correction .separator&Right
henur Oct 29, 2017
7612819
@mixins to %placeholders
henur Oct 29, 2017
b27c707
@mixins to %placeholders 2
henur Oct 29, 2017
a74805b
@mixins to %placeholders 3
henur Oct 29, 2017
a32faba
%placeholder updated
henur Oct 29, 2017
1047a90
#cookie&Shower
henur Oct 29, 2017
a18a11d
@mixin transform
henur Oct 29, 2017
9547c19
placeholder corrections
henur Oct 29, 2017
dbe8fc5
Update 2
henur Oct 29, 2017
8dbafe9
Create helpers.scss
henur Oct 29, 2017
80d31d4
@import "helpers"
henur Oct 29, 2017
624c9f5
#section &LeftInfo
henur Oct 29, 2017
d7aa005
@extend %lefttop correction
henur Oct 30, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions helpers.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
@mixin transform($scale, $opacity) {
-webkit-transform: scale($scale, $scale);
opacity: $opacity;
-moz-transform: scale($scale, $scale);
opacity: $opacity;
-ms-transform: scale($scale, $scale);
opacity: $opacity;
-o-transform: scale($scale, $scale);
opacity: $opacity;
transform: scale($scale, $scale);
opacity: $opacity;
}

%four {
left: 0px;
top: 0px;
width: 100%;
position: absolute;
}

%absolute {
width: 100%;
position: absolute;
}

%bottonright {
right: 0px;
bottom: 0px;
}

%lefttop {
left: 0px;
top: 0px;
}
Loading