-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
109 lines (103 loc) · 2.06 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
*{
box-sizing: border-box;
}
.form-grp{
background:black;
display:flex;
flex-direction: column;
padding: 30px;
width: 60vw;
height: 100%;
border: 2px solid rgb(72, 255, 0);
border-radius: 20px;
}
.co input[type="text"],.co input[type="password"]{
display: block;
padding: 14px 10px;
margin: 20px;
border-radius: 20px;
transition:all 4s ease-in;
}
.co p{
color: white;
}
.co h2{
color:white;
text-transform: uppercase;
font-weight: 600;
align-self: center;
}
#btn{
border: 0;
margin: 20px auto;
display: block;
text-align: center;
border: 3px solid white;
padding: 10px 15px;
font-size: 17px;
cursor: pointer;
}
.co{
background: linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1));
height: 100%;
padding: 10%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
body{
margin: 0%;
padding: 0%;
height: 100%;
width: 100%;
}
.bg{
background-image: url('168.png');
background-repeat: no-repeat;
background-position: center;
background-size: center/cover;
height: 100%;
}
#navbar{
display: flex;
align-items: center;
position:sticky;
top: 0;
}
#logo{
margin: 24px 45px;
}
#logo img{
padding-top: 0rem;
height: 68px;
margin-top: 0%;
}
#navbar ul{
display: flex;
}
#navbar::before{
content: "";
background-color: black;
position: absolute;
height: 100%;
width: 100%;
z-index: -1;
opacity: 0.6;
}
#navbar ul li{
list-style: none;
font-size: 1.2rem;
}
#navbar ul li a{
color: aliceblue;
display:block;
padding: 3px 22px;
border-radius: 20px;font-family: 'Roboto', sans-serif;
}
#navbar ul li a:hover{
color:black;
background-color: aliceblue;
}
.container-1{
}