-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (112 loc) · 2.12 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
122
*{
box-sizing: border-box;
margin: 10%;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: rgb(123, 125, 126);
}
body{
background-color: rgb(255, 255, 255);
max-height: 100px;
margin: auto;
}
form{
display: flex;
flex-direction: column;
padding: auto;
align-items: center;
justify-content: center;
text-align: center;
border: 1px solid rgb(236, 236, 236);
border-radius: 8px;
width: 40%;
margin:auto;
text-align: center;
background: #f4f7f5;
}
.avatar{
font-family: futura bk bt;
background-color: rgb(14, 73, 6);
padding: 10px;
font-size: 50px;
margin-bottom: 5px;
width: 80px;
height: 80px;
text-align: center;
border-radius: 50%;
font-weight: 400px;
color: rgb(255, 255, 255);
}
.f_title{
margin: 10px;
font-weight: bold;
}
input{
margin: 8px;
padding: 10px 10px;
align-items: center;
border-radius: 5px;
border: none;
width: 80%;
background-color: rgb(229, 229, 230);
}
input::placeholder{
opacity: 40%;
}
input:focus {
outline: none;
box-shadow: 0 0 5px rgba(2, 54, 9, 0.3);
}
input[type='submit']{
background-color: rgb(14, 73, 6);
border: none;
color: rgb(255, 255, 255);
width: 30%;
transition: ease 0.3s;
}
input[type='submit']:hover{
background-color: rgb(255, 238, 5);
color:black;
font-weight: bold;
}
.f_below{
margin-top: 0px;
font-size: 12px;
display: flex;
align-items: center;
text-align: center;
justify-content: center;
font-weight: 700;
flex-wrap: wrap;
line-height:0.3;
}
.S_up,
.f_pword {
text-wrap: nowrap;
}
.S_up{
margin-top: 0;
padding: 0;
}
.S_up a:hover, .f_pword:hover{
color: rgb(14, 73, 6);
cursor: pointer;
}
.input_fields{
display: grid;
grid-template-columns: 1fr 1fr;
gap:1rem ;
width: 100%;
align-items: center;
margin-bottom: 30px;
margin-top: 20px;
padding:0 30px
}
.input_fields input{
width: 100%;
margin: 0;
}
:-ms-input-placeholder{
color: rgb(14, 73, 6);
opacity: 50%;
}