-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (74 loc) · 1.19 KB
/
style.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
@font-face {
font-family: "Aurora";
src: url("Aurora.otf");
}
#mixin-button {
box-shadow: 5px 5px rgb(128, 128, 128);
text-shadow: 0px 0px rgb(241, 196, 15);
transform: scale(1) rotate(0deg);
transition: transform 1s;
}
#mixin-button:hover {
transform: scale(2) rotate(5deg);
transition: transform 2s;
color: rgba(101, 224, 101, 0.74);
}
.bg-image {
background-image: url("sun.png");
}
.width {
width: 10vw;
}
.size {
background-size: 10vw;
}
.opacity88 {
opacity: 0.1;
}
html {
background-color: rgb(33, 136, 145);
}
h1,
h3 {
font-family: "Aurora";
text-align: center;
color: rgb(0, 0, 105);
font-weight: bold;
}
body {
background-color: rgb(241, 196, 15);
font-family: serif;
}
p {
color: rgb(0, 0, 105);
}
.baskets {
font-style: underline;
}
#email,
#message {
width: -moz-fit-content;
width: fit-content;
}
.border-dashed {
border-style: dashed !important;
}
.border-ridge {
border-style: ridge !important;
}
.border-groove {
border-style: groove !important;
}
h4 {
color: rgb(0, 0, 105);
text-align: center;
font-weight: bold;
}
h2 {
color: rgb(0, 0, 105);
font-weight: bold;
}
form {
color: rgb(0, 102, 255);
font-weight: bold;
}