-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (110 loc) · 2.3 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
@font-face {
font-family: 'Norse-Bold';
src: url(Norse-Bold.ttf);
font-family: 'Roboto', sans-serif;
font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body{
margin: 0;
background-color: #ebebec;
}
.wrapper{
display: flex;
flex-direction: row;
flex: 1 1 0%;
}
.left-container{
position: relative;
width: 100%;
height: 0;
background-image: url("halie-west-25xggax4bSA-unsplash.jpg");
background-repeat: no-repeat;
/* background-position: center; */
background-size: cover;
padding-bottom: 50%;
}
.logo-container{
font-family: 'Norse-Bold';
font-weight: bold;
position: absolute;
display: inline-flex;
justify-content: center;
width: 100%;
background: black;
opacity: 0.6;
top: 6rem;
text-align: center;
color: white;
font-size: 40px;
}
.credit-photo {
text-align: center;
position: absolute;
bottom: 4em;
color: white;
}
.right-container{
width: 100%;
height: 0;
display: flex;
flex-direction: column;
padding-bottom: 50%;
}
.text-item{
font-family: 'Roboto', sans-serif;
font-weight: bold;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
}
form {
padding-left: 20px;
margin-top: 20px;
padding-bottom: 30px;
}
.input-wrapper {
display: flex;
flex-direction: row;
gap: 69px;
margin-top: 10px;
}
input, label{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: block;
margin-bottom: 7px;
}
form{
box-shadow: 0px 10px 10px 0px rgba(20,19,20,0.24);
background-color: #f8fafc;
}
.text-seconditem{
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.login-link{
display: block;
margin-top: 40px;
}
.bottom{
margin-left: 20px;
}
button{
border-style: none;
border-radius: 5px;
background-color: #596D48;
color: white;
font-size: 16px;
padding: 10px 20px;
}
button:hover{
background-color: #738069;
}
a{
text-decoration: none;
color: #596D48;
}
input:focus{
outline: #E5E7EB;
border-color: blue;
box-shadow: 0 0 5px;
}