forked from GisOpenSourceOrg/Web-GIS-Spacial-Analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (108 loc) · 2.39 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
:root{
--link-color: #6C4BB4;
--primary-color-opacity: #e9d5ff;
--white-shade: #f0f8ff;
--secondary-color:#1e293b;
--primary-padding: 8px;
--pilled-shape-radius: 40px;
--color1: #36EB84;
--color2: #2BCDB5;
--primary-gradient: linear-gradient(to right,var(--color2), var(--color1))
}
body{
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: sans-serif;
background: linear-gradient(to right, #1e293b, #434343);
}
.container{
padding: 15px;
border-radius: 10px;
box-shadow: 2px 2px 10px #353636;
background: #fff;
}
.item-container{
display: flex;
justify-content: center;
align-items: center;
}
.log-in{
font-size: 35px;
color: var(--secondary-color);
}
.log-in::after{
content: "";
display: block;
width: 60%;
height: 3px;
margin-top: 8px;
background: var(--primary-gradient);
margin-inline: auto;
}
.form-input{
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
input[type="text"], input[type="password"]{
padding: var(--primary-padding);
width: 300px;
border-radius: var(--pilled-shape-radius);
border: none;
background: #E7FDF0;
color: var(--secondary-color);
outline: none;
border: 1px solid transparent;
}
@media only screen and (max-width: 300px) {
input[type="text"], input[type="password"] {
width: 200px;
}
}
input[type="text"]:focus-visible, input[type="password"]:focus-visible{
border: 1px solid var(--color1);
background: transparent;
}
.label{
color: var(--secondary-color);
margin-bottom: 3px;
}
.display-space-between{
display: flex;
justify-content: space-between;
align-items: center;
margin: 10px 0 10px 0;
}
.item-container button{
border-radius: 50%;
border: none;
padding: 5px;
background: transparent;
margin-left: 20px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 2px 2px 5px #353636;
}
button[type="submit"]{
width: 100%;
padding: var(--primary-padding);
border-radius: var(--pilled-shape-radius);
border: none;
background: var(--primary-gradient);
color: var(--white-shade);
margin: 10px 0 10px 0;
}
button a{
color: white;
}
.chekbox-label{
font-size: 14px;
}
a{
text-decoration: none;
color: var(--link-color);
font-size: 14px;
}