-
Notifications
You must be signed in to change notification settings - Fork 0
/
style copy.css
142 lines (119 loc) · 2.07 KB
/
style copy.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
html{
margin-left: auto;
margin-right: auto;
}
body{
padding-left: 10px;
padding-right: 10px;
}
.page {
position: relative;
}
.background img {
background-repeat: no-repeat;
background-position: center center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.5;
}
.container {
padding: 20px;
text-align: center;
max-width: 700px;
margin: 0 auto; /* ייבא את האלמנט לאמצע הדף */
}
h1 {
color: #000000da;
font-size: 36px;
margin-bottom: 10px;
text-shadow: white 1px 0 10px;
}
p {
color: #000000;
font-size: 18px;
margin-bottom: 0px;
text-shadow: white 1px 0 10px;
}
.tabs {
margin-bottom: 20px;
}
.tablink {
background-color: #4CAF50;
color: #ffffff;
font-size: 18px;
padding: 10px 20px;
border: none;
cursor: pointer;
border-radius: 5px;
margin: 5px;
}
.tablink:hover {
background-color: #45a049;
}
.tablink.active {
background-color: #45a049;
}
.tabcontent {
display: none;
}
.subtabs {
margin-bottom: 20px;
}
.subtablink {
background-color: #008CBA;
color: #ffffff;
font-size: 18px;
padding: 10px 20px;
border: none;
cursor: pointer;
border-radius: 5px;
margin: 5px;
}
.subtablink:hover {
background-color: #007a8b;
}
.subtablink.active {
background-color: #007a8b;
}
.subtabcontent {
display: none;
}
img {
max-width: 100%;
background-color: white; /* צבע רקע לבן לתמונות */
}
.center {
text-align: center;
}
.tabs {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.subtabs {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container {
width: 100%;
height: 100%;
}
.footer{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}