-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsass.css
127 lines (103 loc) · 1.64 KB
/
sass.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
p {
color: red;
}
#mixin-example {
box-shadow: 5px 5px greenyellow;
text-shadow: 3px 3px white;
}
#mixin-button {
transform: scale(1) rotate(0deg);
transition: transform 1s;
}
#mixin-button:hover {
transform: scale(2) rotate(15deg);
transition: transform 2s;
}
#animated-button {
transform: scale(1) rotate(0deg);
transition: transform 1s;
}
#animated-button:hover {
transform: scale(0.5) rotate(-10deg);
transition: transform 2s;
}
#subtitle {
width: -moz-fit-content;
width: fit-content;
transform: scale(1) rotate(0deg);
transition: transform 1s;
}
#subtitle:hover {
transform: scale(0.5) rotate(-10deg);
transition: transform 2s;
}
@font-face {
font-family: "good vibes";
src: url("goodvibes.ttf");
}
/**/
main {
font-family: serif;
}
h1 {
color: rgb(0, 95, 0);
width: -moz-fit-content;
width: fit-content;
}
h1:hover {
color: rgb(140, 0, 0);
}
p b {
color: rgb(71, 71, 255);
}
pre code {
color: rgb(140, 0, 0);
}
pre i {
color: rgb(161, 61, 161);
}
.bg-image {
background-image: url("Sunshine.png");
}
.horizontalRepeat {
background-repeat: space no-repeat;
}
.verticalRepeat {
background-repeat: no-repeat repeat;
}
.width {
width: 100vw;
}
.height {
height: 70vw;
}
.size10 {
background-size: 10%;
}
.size15 {
background-size: 15%;
}
.size20 {
background-size: 20%;
}
.size25 {
background-size: 25%;
}
.size33 {
background-size: 33%;
}
.size50 {
background-size: 50%;
}
.size75 {
background-size: 75%;
}
.size100 {
background-size: 100%;
}
.stretch {
background-size: 25% 100%;
}
.gradient {
background-image: linear-gradient(90deg, green, white 10% 90%, blue);
}