-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (71 loc) · 1.63 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
/*creates flex box for the front page buttons*/
.frontpage-container{
display:flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
/*The front page buttons use the following section of CSS for their general behaviour, then use color1, color 2 (below) to specify the starting colour*/
.frontpage-item {
display: flex;
align-items: center;
justify-content: center;
width: 220px;
height: 75px;
margin: 5px;
color:white !important;
}
.frontpage-item:hover {
background-color: #80edb2;
}
/*The LARGE front page buttons use the following section of CSS for their general behaviour, then use color1, color 2 (below) to specify the starting colour*/
.frontpage-item-large {
display: flex;
align-items: center;
justify-content: center;
width: 330px;
height: 100px;
margin: 5px;
border-radius: 10px;
color:white !important;
box-shadow: 10px 10px 5px grey;
}
.frontpage-item-large:hover {
background-color: #80edb2;
}
.color1{
background-color: #52adf5;
}
.bordercolor1{
border-color: #52adf5;
}
.color2{
background-color: #281e32;
}
.color3{
background-color: #66d463;
}
.bordercolor3{
border-color: #66d463;
}
.color4{
background-color: #75b62a;
}
.color5{
background-color: #302682;
}
.color6{
background-color: #2250e3;
}
.color7{
background-color: #000000;
}
.color8{
background-color: #999999;
}
/*This is the grey color for buttons under development*/
.color0{
background-color: #999999;
font-size: 14px !important;
}
/*End of the front page buttons section*/