-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
139 lines (136 loc) · 2.86 KB
/
style.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
*{
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
header{
background-image:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(images/Image.jpg);
/* ده بيخللي الصورة كاملة في الصفحة كللها */
height: 100vh;
background-size: cover;
background-position: center;
}
ul{
float: right;
list-style: none;
/* عشان نظبط الزاوية من فوق */
margin-top: 18px;
margin-right:10px ;
}
ul li{
/* بتخللي الخيارات جمب بعض */
display: inline-block;
padding: 5px 10px;
}
ul li a{
text-decoration: none;
color: white;
background-color: rgba(0, 0, 0, 0.527);
padding: 5px 20px;
border: 1px solid transparent;
transition: 0.5s ease;
}
ul li a:hover{
background-color: white;
color: black;
border-color: white;
/* عشان ندي انيميشن جاحد */
}
/* هنخللي الزرار اكتيف علي طول */
ul li .active {
border: white;
background-color: white;
color: black;
}
ul li .active:hover {
background-color: black;
color: white;
}
.logoname{
margin-left: 15px;
margin-top: 15px;
float: left;
height: auto;
color: white;
background-color: rgba(0, 0, 0, 0.527);
padding: 5px 20px;
border: 1px solid transparent;
font-size: 70%;
transition: 0.5s ease;
}
.logoname:hover{
border: 1px solid white;
background-color: white;
color: black;
}
.main{
/* max-width: 1200px; */
margin: auto;
}
.title{
position: absolute;
top: 50%;
left: 50%;
/* ضبط زوايا الكلمة */
transform: translate(-50%, -50%);
}
.title h1{
color: white;
font-size: 26px;
}
.button{
position: absolute;
top: 62%;
left: 50%;
padding: 15px;
/* ضبط زوايا الكلمة */
transform: translate(-50%, -50%);
}
.btn{
border: 1px solid white transparent;
padding: 15px 30px;
color: white;
background-color: rgba(0, 0, 0, 0.568);
text-decoration: none;
transition: 0.5s ease;
margin: 10px;
}
.btn:hover{
background-color: rgb(6, 201, 6);
color: white;
}
.btn-1{
border: 1px solid white transparent;
padding: 15px 30px;
color: white;
background-color: rgba(0, 0, 0, 0.562);
text-decoration: none;
transition: 0.5s ease;
margin: 10px;
}
.btn-1:hover{
background-color: white;
color: black;
}
.byme{
position: absolute;
top: 94%;
left: 1.3%;
text-align: center;
padding: 5px 20px;
background-color: rgba(0, 0, 0, 0.527);
border: 1px solid white transparent;
transition: 0.6s ease;
}
.byme:hover{
background-color: white;
}
.byme h4 {
color: white;
}
.byme a{
text-decoration: none;
}
.byme h4:hover{
color: black;
}