-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (104 loc) · 1.79 KB
/
styles.css
File metadata and controls
115 lines (104 loc) · 1.79 KB
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
body {
background-color: #436CC7;
}
p {
color: black;
font-size:22px;
margin-left: 80px;
margin-top: 40px;
margin-bottom: 30px;
}
@font-face { font-family: ProductSans; src: url('assets/ProductSans.ttf'); }
h1 {
font-family: ProductSans;
margin-left: 80px;
margin-top: 40px
}
h2 {
font-family: ProductSans;
margin-left: 220px;
margin-top: 40px
}
table {
font-family: ProductSans;
margin-top: 40px
}
.button {
background-color: #645B54;
border:none;
color: #FFFFFF;
padding: 10px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 12px;
}
.button1 {
background-color: #A9A5A2;
color: black;
}
.button1:hover {
background-color: #7A6F66;
color: black;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: black;
text-align: right;
}
* {
box-sizing: border-box;
}
.row {
margin-left: -5px;
margin-right: -5px;
}
.column {
float: left;
width: 20%;
padding: 50px;
}
/* Clearfix */
.row::after {
content: "";
clear: both;
display: table;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
font-family: ProductSans;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #040F16;
}
.active {
background-color: #436CC7;
}
body {
margin: 0px;
}
.centred {
display: flex;
justify-content: center;
align-items: center;
}