-
Notifications
You must be signed in to change notification settings - Fork 0
/
home_style.css
109 lines (96 loc) · 1.94 KB
/
home_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
body, html {
height: 100%;
background: url("images/banking3.jpg") no-repeat center center fixed;
background-size: cover;
}
.flex-container-background {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
overflow: auto;
width: auto;
}
.flex-container {
display: -webkit-flex;
display: flex;
}
.flex-item {
margin: auto;
margin-top: 0px;
background: transparent;
}
.flex-item-0 {
margin: auto;
width: 100%;
background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
}
.flex-item-1 {
margin: auto;
margin-top: 50px;
background: rgba(0, 0, 0, .5);
width: 500px;
border-radius: 10px;
}
@media screen and (max-width: 540px) {
.flex-item-1 {
margin-top: 0px;
width: 300px;
}
}
@media screen and (max-width: 340px) {
.flex-item-1 {
margin-top: 0px;
width: auto;
}
}
form {
border: 2px solid #f1f1f1;
border-radius: 10px;
}
h2 {
font-family: 'Sansita Swashed', cursive;
color: white;
font-size: 40px;
margin-left: 10px;
margin-top: 5px;
margin-bottom: 10px;
}
.flex-item-login {
margin: auto;
margin-top: 0px;
margin-bottom: 5px;
text-align: center;
background-color: transparent;
}
input[type=text], input[type=password] {
font-family: 'Sansita Swashed', cursive;
color: #212121;
font-size: 18px;
width: 90%;
height: 40px;
margin: 10px;
padding: 1px 1px;
bottom: 0;
border: 0;
box-sizing: border-box;
background-color: white;
border-radius: 3px;
}
button {
background-color: #23b0a9;
border: none;
color: black;
font-family: 'Sansita Swashed', cursive;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
margin: 10px;
cursor: pointer;
border-radius: 3px;
}
button:hover {
opacity: 0.8;
}