forked from CloudTechDevOps/Docker_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (103 loc) · 1.83 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
114
115
116
117
118
119
120
121
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.flex-r ,.flex-c {
justify-content: center;
align-items: center;
display: flex;
}
.flex-c{
flex-direction: column;
}
.flex-r{
flex-direction: row;
}
.container{
width: 100%;
min-height: 100vh;
padding: 20px 10px;
background: #E5E5E5;
}
.login-text{
background-color: #F6F6F6;
max-width: 400px;
min-height: 500px;
border-radius: 10px;
padding: 10px 20px;
}
.logo{
margin-bottom: 20px;
}
.logo span , .logo span i{
font-size: 25px;
color:#0d8aa7 ;
}
.login-text h1{
font-size: 25px;
}
.login-text p{
font-size: 15px;
color: #000000B2;
}
form{
align-items: flex-start !important;
width: 100%;
margin-top: 15px;
}
.input-box{
margin: 10px 0px;
width: 100%;
}
.label{
font-size: 15px;
color: black;
margin-bottom: 3px;
}
.input{
background-color: #F6F6F6;
padding: 0px 5px;
border: 2px solid rgba(216, 216, 216, 1);
border-radius: 10px;
overflow: hidden;
justify-content: flex-start;
}
input{
border: none;
outline: none;
padding: 10px 5px;
background-color: #F6F6F6;
flex: 1;
}
.input i{
color:rgba(0, 0, 0, 0.4);
}
.check span{
color:#000000B2;
font-size: 15px;
font-weight: bold;
margin-left: 5px;
}
.btn{
color: #ffffff;
border-radius: 30px;
padding: 10px 15px;
background: linear-gradient(122.33deg, #68bed1 30.62%, #1E94E9 100%);
margin-top: 30px;
margin-bottom: 10px;
font-size: 16px;
transition: all 0.3s linear;
}
.btn:hover{
transform: translateY(-2px);
}
.extra-line{
font-size: 15px;
font-weight: 600;
}
.extra-line a{
color: #0095B6;
}