-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
81 lines (72 loc) · 1.72 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
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
* {
margin: 0;
padding: 0;
border: none;
outline: none;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
/* font-family: 'Poppins', sans-serif; */
font-family: 'Ubuntu', sans-serif;
/* width: 100vw */
}
form {
width: 90vw;
max-width: 700px;
/* margin: 40px 50px; */
padding: 30px;
background-color: #ffc701;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
}
form .input {
width: 90%;
}
input {
width: -webkit-fill-available;
margin: 20px 0px;
padding: 15px;
border-radius: 5px;
}
button {
cursor: pointer;
padding: 10px 20px;
margin: 20px 0px;
/* border: none; */
border-radius: 5px;
background-color: white;
color: #0075ec;
font-weight: 500;
font-size: 17px;
transition: 1s ease;
}
button:hover{
background-color: #e1e1e1;
color: #1b1b1b;
}
/* table */
table {
width: 90vw;
max-width: 760px;
/* margin: 40px 50px; */
padding: 30px;
background-color: #ffc701;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
}
table thead th,
table tbody td {
padding: 0px 20px;
}