-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
108 lines (88 loc) · 1.55 KB
/
Copy pathstyles.css
File metadata and controls
108 lines (88 loc) · 1.55 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
108
body {
margin: 0;
background-color: #121212fa;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 16px;
line-height: 1.5;
}
h1 {
text-align: center;
color: aliceblue;
margin: 75px auto 50px auto;
}
p {
margin: 0 0 10px;
}
.tabs {
max-width: 900px;
margin: 50px auto;
}
.tabs__nav {
display: flex;
}
.tabs__nav-btn,
.tabs__item-btn {
padding: 15px 30px;
font-size: 20px;
background-color: #f5f5f5;
border: 0;
border-right: 1px solid #ddd;
cursor: pointer;
}
.tabs__nav-btn:last-child {
border-right: none;
}
.tabs__nav-btn:hover,
.tabs__item-btn:hover {
background-color: #ddd;
}
.tabs__nav-btn.active {
background-color: #5e3ddf;
border-right-color: #5e3ddf;
color: #fff;
}
.tabs__item-btn.active {
background-color: #2dd43bcc;
border-right-color: #2dd43bcc;
color: #fff;
}
.tabs__content {
padding: 30px 30px 30px 0px;
background-color: #fff;
}
.tabs__item,
.item__content-img {
display: none;
}
.tabs__item.active,
.item__content-img.active {
display: block;
}
.tabs__item_direction {
display: flex;
flex-direction: column;
}
.item__wrapper {
display: flex;
}
.item__left{
margin-right: 25px;
}
.tabs__item-btn {
margin-bottom: 20px;
}
.img__wrapper {
position: relative;
}
.img__wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.content__hidden-text {
display: block;
text-align: center;
margin-top: 20px;
font-size: large;
}