-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (93 loc) · 1.67 KB
/
style.css
File metadata and controls
93 lines (93 loc) · 1.67 KB
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
*{
margin: 0;
padding: 0;
font-family: 'Mandali', sans-serif;
}
body{
background-image: linear-gradient(rgba(30,30,30,0.8),rgba(30,30,30,0.8)),url(images/bcars.jpg);
background-position: center;
background-size: cover;
}
.container{
width: 360px;
height: 475px;
margin: 7% auto;
background: #1B1B1B;
border-radius: 10px;
position: relative;
}
img{
display: flex;
margin-left: auto;
margin-right: auto;
width: 100px;
transition: 0.2s;
}
img:hover{
transform: scale(1.4);
}
h3{
text-align: center;
margin-top: 13px;
margin-bottom: 13px;
font-size: 25px;
color: #fff;
}
.container form{
width: 280px;
position: absolute;
top: 35px;
left: 40px;
transition: 1.5s
}
form input{
width: 100%;
padding: 10px 5px;
margin: 5px 0;
border-radius: 10px;
border: 1px solid #0077CF;
outline: none;
background: #D0CECE;
opacity: 1;
caret-color: #FF3838;
transition: 0.3s;
}
form input:hover{
border: 1px solid #0077CF;
opacity: 0.4;
}
::placeholder{
color: #5C5C5C;
}
.sign-in ul li{
list-style: none;
margin-top: 5px;
margin-left: 10px;
}
.sign-in ul li a{
text-align: left;
text-decoration: none;
color: #fff;
font-size: 13px;
}
.box{
display: block;
text-decoration: none;
text-align: center;
width: 110px;
height: 35px;
margin-top: 25px;
margin-left: auto;
margin-right: auto;
background: transparent;
border-radius: 30px;
border: 1px solid #fff;
outline: none;
color: #fff;
cursor: pointer;
}
.box:hover{
border: 1px solid #FF3838;
background: #FF3838;
transition: 1s;
}