-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
89 lines (76 loc) · 1.15 KB
/
styles.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
86
87
88
89
html,
body {
margin: 0;
font-family: 'Cabin', serif;
font-size: 18px;
}
.container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
header,
footer {
background-color: #000;
padding: 1em;
text-align: center;
}
header {
display: flex;
align-items: center;
justify-content: end;
}
header img {
height: 3em;
margin: 0.5em;
}
main {
flex-grow: 1;
display: flex;
background-color: #EEE;
flex-direction: row;
}
.border {
border: solid 2px #000;
border-radius: 5px;
box-shadow: 5px 5px 2px;
}
.block {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
}
a {
border-color: #000;
background: #000;
color: #BBB;
padding: 1em;
}
a:hover {
border-color: #444;
background: #444;
}
a:hover span {
visibility: visible;
bottom: 0;
right: 0;
margin: 20px;
}
a img {
height: 10em;
}
.small {
height: 8em;
margin: 1em;
}
span {
visibility: hidden;
position: fixed;
color: #FFF;
padding: 10px 20px 10px 20px;
border-radius: 5px;
border: solid 2px #000;
background: #000;
box-shadow: 3px 3px 1px #BBB;
}