-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
53 lines (45 loc) · 1.07 KB
/
main.css
File metadata and controls
53 lines (45 loc) · 1.07 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
@import url(https://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans+Mono);
@import url(https://fonts.googleapis.com/css?family=Walter+Turncoat);
@import url(https://pother.ca/CssBase/css/created-by-potherca.css);
html, body {
height: 100%;
}
html {
background: #BA9A6D url(background.jpg) no-repeat center center fixed;
background-size: cover;
}
.card-container {
list-style: none;
display: flex;
justify-content: space-around;
align-content: space-around;
flex-direction: column;
align-items: center;
height: 90%;
overflow: auto;
}
.card {
box-shadow: 0 0.4em 0.8em 0 rgba(0,0,0,0.6);
width: 20em;
height: 5em;
display: flex;
align-items: center;
align-content: center;
background: white;
color: #ff69b4;
font-family: 'Walter Turncoat', cursive;
}
.card:hover {
box-shadow: 0 0.8em 1.6em 0 rgba(0,0,0,0.8);
}
.card__content {
text-align: center;
margin:auto;
}
footer {
font-family: 'Droid Sans', sans-serif;
background-color: rgba(255,255,255,0.4);
}
footer p {
padding: 0.25em 1em;
}