-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.css
159 lines (156 loc) · 2.77 KB
/
project.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-weight: lighter;
letter-spacing: 3px;
margin: 0;
padding: 0;
}
body{
background-color: #000000;
padding-left: 10px;
padding-right:10px ;
}
.fa-arrow-left{
position: absolute;
top: 0;
left: 0;
margin: 3vh;
color: white;
font-size: 35px;
}
.fa-arrow-left:hover{
color: #0099ff;
}
.head{
color: #0099ff;
margin-top: 2vh;
margin-left:10vh;
margin-right: 8vh;
font-size: 40px;
}
.navigation{
margin: 1vh 20vh;
margin-left: 40vh;
}
nav ul li a{
text-decoration: none;
color: white;
font-size: 30px;
cursor: pointer;
scale: 1.0;
transition: 0.5s;
}
nav ul li a:hover{
color: #0099ff;
font-size:31px;
}
nav ul li a::after{
content: '';
height: 3px;
width: 100%;
color: #0099ff;
top: 0;
position: absolute;
bottom:-5px;
left:0;
}
.navbar li{
display: inline-block;
align-items: center;
justify-content: space-between;
margin: 40px;
}
.login{
position: relative;
}
.dropdown{
position: absolute;
background-color: #050505;
padding: 0px;
margin-left:5px ;
border-radius: 30px;
box-shadow:0 4px 12px rgba(249, 250, 252, 0.74);
display: none;
transition: 0.7s;
border: 2px solid #0099ff;
}
.login:hover .dropdown{
display: block;
}
.dropdown li{
display: block;
}
.dropdown li a{
font-size: 22px;
}
.dropdown li a:hover{
font-size: 23px;
}
h2{
color: #0099ff;
margin-top: 10vh;
margin-bottom: 6vh;
transition: 0.5s;
}
.myeng{
position: absolute;
margin-top: 0;
right: 0;
top: 0;
margin-right: 3vh;
margin-top: 5vh;
}
a{
text-decoration: none;
color: #ffffff;
}
.fa-arrow-right-from-bracket:hover{
color: #0099ff;
}
.container{
display: grid;
grid-template-columns: repeat(2,250px);
gap: 10%;
row-gap: 30%;
height: 50vh;
width: 150vh;
}
.pro{
display: flex;
align-items: center;
justify-content: center;
font-weight: 400;
border-right: 4px solid #0099ff;
border-radius: 50%;
padding:10%;
transition: 0.7s;
}
.pro:hover{
box-shadow:0 4px 12px rgba(249, 250, 252, 0.74);
scale: 1.1;
}
.pro:hover h2{
color: #0099ff;
}
.pro h2{
color: #ffffff;
transition: 0.7s;
}
li a{
position: relative;
}
li a::after{
position: absolute;
content: '';
height: 6px;
width: 0%;
background-color: #0099ff;
transition: 0.5s;
border-radius: 30px;
}
li a::after:hover{
width: 100%;
}