-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
58 lines (52 loc) · 1.03 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
html,
body {
margin: 0;
height: 100%;
background-color: rgb(61, 61, 231) !important;
}
.global-container {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: black;
box-shadow: 2px 2px black;
}
.login {
font-family: 'Segoe UI';
width: 380px;
height: 450px;
padding: 20px;
background-color: black !important;
border-radius: 10px !important;
}
input[type='email'],
input[type='password'],
input[type='username'] {
background-color: white;
color: black;
border: 2px solid black !important;
box-shadow: 1px 1px !important;
}
input[type='email']:focus,
input[type='password']:focus input[type='username']:focus {
outline: none;
border: none;
background: white;
color: #191919;
margin: 0;
}
.card-title {
font-family: 'Segoe UI';
font-weight: bold;
padding-top: 20px;
transform: translateY(10px);
border-radius: 10px !important;
}
.alternatif {
text-align: center;
font-family: 'Segoe UI';
font-weight: bold;
padding-top: 10px;
justify-content: center;
}