-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (55 loc) · 944 Bytes
/
style.css
File metadata and controls
67 lines (55 loc) · 944 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
box-sizing: border-box;
}
body {
font-family: "Roboto,sans-serif";
display: flex;
flex-direction: column;
align-items: center;
}
.login-section {
text-align: center;
font-size: 50px;
align-items: center;
}
.login-input {
position: relative;
padding: 10px;
margin-bottom: 15px;
border-radius: 30px;
}
.button-container {
display: block;
}
.btn {
font-size: 30px;
text-decoration: none;
border: none;
background-color: rgb(253, 253, 253);
padding: 5px;
border-radius: 5px;
}
.btn:active {
transform: translateY(4%);
}
.line {
margin-top: 30px;
float: left;
height: 1px;
width: 90%;
background-color: rgb(88, 88, 88);
}
.admin-section {
text-align: center;
}
.seller-section {
text-align: center;
}
.login-as {
text-align: center;
display: none;
}
/* .hidden {
display: none;
} */