-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclientsp.css
106 lines (102 loc) · 1.85 KB
/
clientsp.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
*{
margin: 0%;
padding: 0%;
box-sizing: border-box;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-weight: lighter;
letter-spacing: 3px;
background-color: #000000;
}
body{
padding-left: 10px;
padding-right:10px ;
}
i{
position: absolute;
top: 0;
left: 0;
margin: 3vh;
color: white;
font-size: 35px;
}
i:hover{
color: #0099ff;
}
.head{
color: #0099ff;
margin-top: 8vh;
margin-bottom: 6vh;
margin-left:10vh;
margin-right: 8vh;
font-size: 40px;
}
h3{
color: #ffffff;
margin-top: 6vh;
margin-bottom: 6vh;
margin-left: 19vh;
margin-right: 8vh;
font-size: 34px;
}
.content{
display: flex;
}
.text{
flex-basis:75%;
}
.image{
flex-basis: 30%;
height: 45vh;
width: 45vh;
background-image: url(./handshake.jpg);
background-size: cover;
margin: 0 30vh;
top: 2%;
border-radius:50%;
border-left: 12px outset #0099ff;
}
.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 a{
font-size: 20px;
}
.dropdown li a:hover{
font-size: 21px;
}
nav ul li a{
text-decoration: none;
color: white;
font-size: 25px;
cursor: pointer;
scale: 1.0;
transition: 0.5s;
}
nav ul li a:hover{
color: #0099ff;
font-size:27px;
}
.navbar li{
display: inline-block;
align-items: center;
justify-content: space-between;
margin: 40px;
}
.navbar{
display: flex;
margin-left: 40vh;
}