-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
50 lines (50 loc) · 828 Bytes
/
styles.css
File metadata and controls
50 lines (50 loc) · 828 Bytes
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
*{
padding: 0;
margin: 0;
}
@font-face{
font-family: Goldman;
src: url('fonts/Goldman-Regular.ttf');
}
@font-face{
font-family: Architect;
src: url('fonts/ArchitectsDaughter-Regular.ttf');
}
body{
text-align: center;
background-color: azure;
}
div{
display: flex;
}
h1{
margin-bottom: 2px;
font-family: Goldman;
}
.home{
margin-left: 20%;
margin-right: 20%;
flex-direction: column;
}
.days{
padding: 2.5%;
margin-top: 1%;
background-color: rgb(70, 107, 139);
color: white;
font-family: Architect;
font-size: large;
border: 2px solid black;
}
a{
text-decoration: none;
}
a:hover{
cursor: pointer;
background-color: rgba(6, 78, 78, 0.555);
color: black;
}
.link{
text-decoration: none;
color: darkcyan;
margin: auto;
}