-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
103 lines (85 loc) · 1.96 KB
/
index.css
File metadata and controls
103 lines (85 loc) · 1.96 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
.flex-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: space-between;
}
.flex-item {
flex: 1 1 200px; /* flex-grow, flex-shrink, flex-basis */
min-width: 0; /* Important for text truncation */
text-align: center;
border: 1px solid rgba(169, 169, 169, 0.2); /* Light gray with transparency */
transition: all 0.3s ease;
}
.flex-item:hover {
border: 1px solid grey; /* Red border on hover (symbolizing boycott) */
box-shadow: 0 0 8px rgba(255, 0, 0, 0.2); /* Glow effect */
}
.right-align {
text-align: right;
}
.imp {
color: red;
background-color: white;
}
.btn:hover {
background-color: #db9e30;
}
.landing-img {
display: flex;
justify-content: center;
}
ul {
list-style-type: none;
}
.pages-bar {
background-color: #cfcfcf;
color: white;
margin: 2%;
display: flex;
justify-content: center;
flex-direction: row-reverse;
}
.pages-bar a{
color: black;
background-color: hsl(172, 52%, 92%);
padding: 0.5% 1%;
margin: 0.5%;
text-decoration: none;
}
.pages-bar a:hover {
background-color: #0070f3;
color: white;
cursor: pointer;
}
.boycott-from-syria-section {
text-align: right;
}
.boycott-from-syria-section h4 {
margin-bottom: 3%;
}
.boycott-from-syria-inner-section {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.boycott-from-syria-images {
display: flex;
justify-content: center;
flex-wrap: wrap-reverse;
}
.boycott-from-syria-images img{
/* margin: 0.3%; */
}
.boycott-from-syria-social-media a img {
border: 1px solid white;
transition: all 0.3s ease;
/* display: flex; */
/* justify-content: ; */
}
.boycott-from-syria-social-media a img:hover {
border: 1px solid grey; /* Red border on hover (symbolizing boycott) */
/* box-shadow: 0 0 8px rgba(255, 0, 0, 0.2); /* Glow effect */
box-shadow: 0 0 8px black; /* Glow effect */
}