-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
129 lines (107 loc) · 1.78 KB
/
style.scss
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
128
129
//CUSTOM COLORS
$darkBlue: rgba(0, 0, 105, 1);
$lightBlue: rgba(0, 102, 255, 1);
$myYellow: rgba(241, 196, 15, 1);
$myTeal:rgba(33, 136, 145, 1);
$myGrey: rgba(128, 128, 128, 1);
$myGreen: rgba(101, 224, 101, 0.74);
//CUSTOM FONT
$primaryFont: "Aurora";
$secondaryFont: serif;
@font-face {
font-family: "Aurora";
src: url("Aurora.otf");
}
//MIXINS
@mixin blueText {
color: $darkBlue;
}
@mixin greenText {
color: $myGreen;
}
@mixin boxShadow {
box-shadow: 5px 5px $myGrey;
}
@mixin textShadow {
text-shadow: 0px 0px $myYellow;
}
@mixin animation1 {
transform: scale(1) rotate(0deg);
transition: transform 1s;
}
@mixin animation2 {
transform: scale(2) rotate(5deg);
transition: transform 2s;
}
#mixin-button {
@include boxShadow;
@include textShadow;
@include animation1;
&:hover {
@include animation2;
@include greenText;
}
}
//BACKGROUND IMAGE
$sun:url("sun.png");
.bg-image {
background-image: $sun;
}
.width {
width: 10vw;
}
.size {
background-size: 10vw;
}
.opacity {
opacity: 0.10;
}
html {
background-color: $myTeal;
}
h1,
h3 {
font-family: $primaryFont;
text-align: center;
color: $darkBlue;
font-weight: bold;
}
body {
background-color: $myYellow;
font-family: $secondaryFont;
}
p {
@include blueText;
}
.baskets {
font-style: underline;
}
#email,
#message {
width: fit-content;
}
//
.border-dashed {
border-style: dashed !important;
}
//CONTACT PAGE
.border-ridge {
border-style: ridge !important;
}
//CONTACT PAGE
.border-groove {
border-style: groove !important;
}
h4 {
color: $darkBlue;
text-align: center;
font-weight: bold;
}
h2 {
color: $darkBlue;
font-weight: bold;
}
form {
color: $lightBlue;
font-weight: bold;
}