-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (88 loc) · 1.65 KB
/
style.css
File metadata and controls
89 lines (88 loc) · 1.65 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body{
width: 100%;
height: 100vh;
}
#main{
width: 100vw;
height: 100vh;
background-color: rgb(248, 248, 12);
display: flex;
align-items: center;
justify-content: center;
}
#login_section{
width: 26vw;
height: 65vh;
background-color: rgb(41, 41, 41);
border-radius: 10%;
box-shadow: 0px 0px 25px #414040e1;
}
#logo{
width: 100%;
height: 20%;
display: flex;
align-items: center;
justify-content: center;
}
#logo h2{
color: aliceblue;
font-size: 36px;
padding-top: 20px;
font-family: "opensans";
font-weight: 500;
font-style: italic;
word-spacing: 3px;
letter-spacing: 1px;
}
#login{
width: 100%;
height: 80%;
display: flex;
flex-direction: column;
align-items: center;
padding-top: 15%;
}
.input{
width: 70%;
margin-bottom: 25px;
font-size: 25px;
font-weight: 300;
padding: 7px 14px;
outline: none;
color: white;
background-color: transparent;
border: none;
border-bottom: 2px solid white;
font-family: "opensans";
}
::placeholder{
color: white;
font-size: 20px;
font-family: "opensans";
}
.btn{
width: 40%;
height: 16%;
outline: none;
padding: 8px 16px;
font-size: 31px;
border-radius: 10px;
outline: none;
cursor: pointer;
background-color: rgb(248, 248, 12);
border: none;
font-family: "opensans";
margin-top: 14px;
color: rgb(49, 49, 49);
box-shadow: 0px 0px 25px rgba(85, 85, 85, 0.683);
transition: 0.6s;
transform: scale(1);
}
.btn:hover{
transform: scale(1.1);
}