-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPageStyle.css
More file actions
80 lines (69 loc) · 1.19 KB
/
PageStyle.css
File metadata and controls
80 lines (69 loc) · 1.19 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
body {
background-color: #262626;
font-family: "Lato", sans-serif;;
font-size: 150%;
}
header {
width: 100%;
height: 46px;
}
ul {
list-style-type: none;
position: fixed;
width: 100%;
top: 0px;
left: 0px;
margin: 0;
padding: 0;
background-color:dimgray;
overflow: hidden;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 10px 15px;
text-decoration: none;
}
li a.active {
background-color: #262626;
color: white;
}
li a:hover:not(.active) {
background-color: black;
color: white;
}
h1 {
color: darkslategrey;
font-family: "Lato", sans-serif;;
font-size: 100%;
}
p {
color: darkslategrey;
font-family: "Lato", sans-serif;;
font-size: 100%;
}
.card {
box-shadow: 0 4px 8px 0 black;
transition: 0.3s;
background-color: whitesmoke;
width: 300px;
height:300px;
padding: 0px 0px;
}
.card:hover {
box-shadow: 0 8px 16px 0 black;
}
.container{
display: flex;
justify-content: space-around;
width:100%;
margin-top: 20px;
height: inherit;
flex-wrap: wrap;
overflow: auto;
background-color: transparent;
}