-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
144 lines (123 loc) · 2.42 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body {
display: flex;
flex-direction: column;
height: 100%;
color: #555;
margin: 0;
}
header {
display: flex;
justify-content: center;
height: 60px;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
ul.menu {
margin: 0;
padding: 4px;
}
ul.menu li {
display: inline;
margin-right: 10px;
padding: 10px;
line-height: 55px;
}
a {
text-decoration: none;
color: #555;
font-family: 'Playfair Display', sans-serif;
text-transform: uppercase;
transition: color 0.5s ease-in-out;
}
a:hover {
color: #999;
}
ul li.active a::after {
width: 6px;
height: 6px;
background: #acacac;
top: 27px;
margin-top: 0;
margin-left: 15px;
position: absolute;
content: '';
}
footer {
display: inline-flex;
justify-content: center;
align-items: flex-end;
padding: 30px 0;
background-color: #555;
}
.dev {
color: #9d9d9d;
text-align: center;
}
div.sliders .item {
display: flex;
justify-content: center;
}
.sliders img {
object-fit: scale-down;
width: 500px;
height: 500px;
}
.contaner {
width: 90%;
margin: 0 auto;
}
section {
position: relative;
flex-grow: 1;
padding: 15px;
}
div.sliders .slick-prev::before,
div.sliders .slick-next::before {
color: rgb(138, 133, 133);
}
.ac-container input:checked + label,
.ac-container input:checked + label:hover {
color: #cec49a;
}
.ac-container label:hover::after,
.ac-container input:checked + label:hover::after {
content: '';
position: absolute;
width: 24px;
height: 24px;
right: 13px;
top: 7px;
background: transparent url(http://netcribe.com/example/arrow_down.png) no-repeat center center;
}
.ac-container input {
display: none;
}
.ac-container article {
background: rgba(255, 255, 255, 0.5);
margin-top: -1px;
overflow: hidden;
height: 0;
position: relative;
z-index: 10;
transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}
.ac-container input:checked ~ article {
transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
box-shadow: 0 0 0 1px rgba(155, 155, 155, 0.3);
height: auto;
}
.ac-container article p {
font-style: italic;
color: #555;
line-height: 23px;
font-size: 14px;
padding: 0 20px;
text-shadow: 1px 1px 1px #fff;
}
.self {
display: flex;
}
.self img {
object-fit: scale-down;
width: 500px;
height: 500px;
}