-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.css
67 lines (61 loc) · 1.11 KB
/
main.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: rgb(34, 64, 109);
font-family: 'Muli', sans-serif;
}
h1 {
width: auto;
font-size: 1.7em;
margin: 60px 60px 30px 60px;
color: rgb(197, 196, 196);
text-align: center;
letter-spacing: 0.2em;
text-transform: uppercase;
border-bottom: 3px solid rgb(211, 207, 207);
padding-bottom: 30px;
text-indent: -0.3em;
}
.container {
display: flex;
flex-flow: row wrap;
justify-content: space-evenly;
align-items: center;
margin: 0 auto;
}
.day {
width: 280px;
height: 280px;
display: flex;
flex-flow: column nowrap;
background: rgb(240, 238, 227);
margin: 20px;
border-radius: 5px;
}
.day a {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
width: 100%;
height: 100%;
text-decoration: none;
}
.day img {
width: 100%;
height: 200px;
}
.day span {
word-wrap: break-word;
font-size: 1.2rem;
display: inline-block;
width: 100%;
text-align: center;
text-transform: lowercase;
color: rgb(77, 76, 76);
font-weight: bolder;
padding-bottom: 24px;
}