-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
68 lines (58 loc) · 901 Bytes
/
Copy pathcss.css
File metadata and controls
68 lines (58 loc) · 901 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
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
* {
padding: 0;
margin: 0;
}
body {
position: relative;
padding: 30px;
font-family: 'Lucida Sans', sans-serif;
font-size: 15px;
}
.content {
position: relative;
width: 700px;
margin: 0 auto;
}
#navegacao {
position: relative;
margin: 0 10px;
padding: 5px;
clear: both;
}
#navegacao #wrapper-dia {
display: inline-block;
}
#navegacao #wrapper-list {
float: right;
}
.item {
position: relative;
background-color: #eeeeee;
color: #999999;
font-size: 35px;
text-align: center;
margin: 10px;
border: 1px solid #aaaaaa;
border-radius: 5px;
}
.item .dia {
line-height: 140px;
}
.item .dia-nome {
position: absolute;
font-size: 11px;
bottom: 10px;
left: 10px;
color: red;
}
.item .cat-nome {
position: absolute;
font-size: 11px;
bottom: 10px;
right: 10px;
color: blue;
}
.slick-prev:before,
.slick-next:before {
color: #999999;
}