-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (53 loc) · 1.53 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
/* valentines
:root {
--tan: #D8CEB3;
--grey: #504E4F;
--red: #c00000;
--orange: #ff3334;
--yellow: #ff6f77;
--green: #ff8896;
--blue: #09A4EC;
} */
:root {
--tan: #D8CEB3;
--grey: #504E4F;
--red: #E3242A;
--orange: #e65f36;
--yellow: #F3C900;
--green: #4FB539;
--blue: #09A4EC;
}
div#leftside {float: left; margin: 3; padding: 4px; width: 8pc;}
div#rightside {margin-right: 10%; margin-left: 20%; padding: 0;}
.background {
/* background-image: url("images/bananas.png"); */
background-color: var(--tan);
/* background-repeat: repeat; */
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 90;
}
.yellowframe {outline: 2px solid var(--yellow);}
.blueframe {outline: 2px solid var(--blue);}
.redframe {outline: 2px solid var(--red);}
.orangeframe {outline: 2px solid var(--orange);}
.tanframe {outline: 2px solid var(--tan);}
.greyframe {outline: 2px solid var(--grey);}
.greenframe {outline: 2px solid var(--green);}
.yellowbox {background-color: var(--yellow);}
.bluebox {background-color: var(--blue);}
.redbox {background-color: var(--red);}
.orangebox {background-color: var(--orange);}
.tanbox {background-color: var(--tan);}
.greybox {background-color: var(--grey);}
.greenbox {background-color: var(--green);}
.yellowcolor {color: var(--yellow);}
.bluecolor {color: var(--blue);}
.redcolor {color: var(--red);}
.orangecolor {color: var(--orange);}
.tancolor {color: var(--tan);}
.greycolor {color: var(--grey);}
.greencolor {color: var(--green);}