-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
113 lines (109 loc) · 2.17 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
*{
padding: 0%;
margin: 0%;
box-sizing: border-box;
}
body{
background: whitesmoke;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: cover;
font-family: "anton";
}
.content{
width: 850px;
height: 480px;
display: block;
margin: 100px auto ;
background:rgba(0, 0, 0, 0.466);
border-radius: 30px;
}
.head{
font-size: 30px;
font-family: "anton";
border-bottom-style: solid ;
margin: 10px 5px;
text-align: center;
margin-bottom: 60px;
color: #101010;
text-transform: uppercase;
letter-spacing: 3px;
}
.loginbar{
margin-left: 70px;
max-width: 300px;
width: 100%;
height: 50px;
background:rgba(203, 207, 207, 0.816) ;
display: grid;
grid-template-columns: 15% 85%;
border-radius: 20px;
}
.password{
margin-left: 70px;
max-width: 300px;
width: 100%;
height: 50px;
background:rgba(203, 207, 207, 0.816) ;
border-radius: 20px;
display: grid;
grid-template-columns: 15% 85% ;
}
.loginbar input{
background:none;
border: none;
border-radius: 20px;
}
.password input{
background: none;
border: none;
border-radius: 20px;
}
.term{
margin-left: 70px;
letter-spacing: 0.5px;
color: #101010;
}
.term a{
text-decoration: none;
color: rgb(237, 226, 13);
}
button{
margin-left: 70px;
height: 49px;
width: 150px;
background-color: #4285F4;
outline: none;
border: none;
border-radius: 50px;
color: white;
text-transform: uppercase;
transition: all 0.5s;
}
button:hover{
background-color:#0047AB ;
}
.logo{
color: white;
position: absolute;
display: flex;
justify-content:end;
align-items: center;
bottom: 5%;
right: 5%;
height: 100px;
width: 90vw;
border-radius: 30px;
text-align: end;
background-color: #2c2f35;
text-transform:uppercase;
letter-spacing: 2px;
}
img{
height: 75px;
width: 90px;
margin-top: 9px;
margin-left: 7px;
margin-right: 59px;
}