-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (89 loc) · 1.45 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (89 loc) · 1.45 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body {
font-family: Roboto;
padding: 20px;
background: #e6e7ed;
}
header{
background: #fed136;
padding: 40px;
margin-bottom: 20px;
text-align: center;
}
.card{
margin-bottom: 20px;
}
.card-header {
background-color: #fed13699;
transition: 0.2s;
}
.card:hover .card-header {
background-color: #fed136;
}
.img {
height: 200px;
background-color: #aaa;
padding: 20px;
margin-bottom: 20px;
background-size: cover;
background-position: center;
}
aside .card:nth-child(2) .img{
height: 60px;
}
.icon{
font-size: 20px;
padding-right: 15px;
}
.card-body > .link{
text-decoration: none;
transition: color .2s;
color: #000;
}
.link:hover{
color: #aaa;
}
footer{
background-color: #fed136;
text-align: center;
padding:10px;
}
.carousel-item > .img{
height: 300px;
}
label{
position: absolute;
width: 45px;
height: 26px;
right: 20px;
top: 20px;
border:2px solid;
border-radius: 20px;
}
label:before{
position: absolute;
content: "";
width: 20px;
height: 20px;
left: 1px;
top: 1px;
border-radius: 50%;
cursor: pointer;
background: black;
transition: 0.4s;
}
label.active:before{
left:21px;
background: rgba(255, 255, 255, 0.8);
color: black;
}
body.night{
background: #20222c;
color: #fff;
}
.theme{
background: #4d3b00;
border: none !important;
}
.card.theme:hover .card-header {
background-color: #997500;
}