-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.css
73 lines (71 loc) · 1.46 KB
/
events.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
* {
/* מרחיב את הבורדר והפדינג כלפי פנים ולא כלפי חוץ כברירת מחדל */
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Open Sans', sans-serif;
direction: rtl;
}
.container-fluid {
width: 100%;
padding: 0px 16px;
}
.container {
display: flex;
justify-content: space-between;
max-width: 900px;
margin: 0 auto;
}
header{
background: rgb(88, 16, 16);
min-height: 80px;
}
header .container{
align-items: center;
}
header nav a {
color: white;
text-decoration: none;
padding: 0 12px;
}
header nav a:hover {
color: gold;
text-decoration: underline;
}
header .icon{
border: none;
border-radius: 30px;
}
header nav a[href="events.html"]{
color: gold;
}
main{
background-image: url(images/בית\ כנסת.png);
background-size: cover;
background-position: center center;
background-attachment: fixed;
height: 1500px;
padding: 8px;
}
main .container{
display: block;
}
main .box{
display: flex;
padding: 32px;
height: 30%;
font-size: 12px;
}
main .container .box .img{
transition: 2000ms;
}
main .container .box .img:hover{
transform: scale(1.5,1.5);
}
main .container .box .explanation{
background: white;
text-align: center;
padding: 8px;
box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
}