-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (38 loc) · 688 Bytes
/
style.css
File metadata and controls
44 lines (38 loc) · 688 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.red-text {
color: red;
font-size: 36px;
font-family: 'Inconsolata';
font-style: bold;
padding: 10px 10px 10px 10px;
}
.container {
align-items: baseline;
display: flex;
flex-direction: column;
justify-content: flex-start;
margin: 10px;
font-family: 'Lato', sans-serif;
}
.card{
background: #f8f9f9;
border: 1px solid #b5b5b5;
border-radius: 3px;
box-shadow: 3px 3px 0px #bababa;
font-size: 1.1em;
margin: 10px;
line-height: 1.33em;
list-style: none;
text-align: center;
}
.card:hover{
background: #e0e4e4;
box-shadow: 1px 1px 0px #bababa;
}
.card a {
text-decoration: none;
}