-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
119 lines (112 loc) · 2.13 KB
/
styles.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
113
114
115
116
117
118
119
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
margin: 0px;
padding: 0px;
font-family: 'Poppins', sans-serif;
}
body{
background-color: rgb(224, 224, 224);
}
/* ---------------------------------------------------- */
.navi{
width: 100vw;
height: 50px;
position: sticky;
top: 0px;
background-color: black;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
}
#head1{
font-size: 20px;
padding-left: 60px;
}
#navR{
padding-right: 50px;
}
#navR>a{
color: white;
text-decoration: none;
padding-left: 30px;
}
.navi>section{
padding: 10px;
display: flex;
justify-content:flex-end;
align-items: center;
}
/* ------------------------------------------------------- */
.container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#tableDiv{
width: 600px;
height: auto;
margin-top: 50px;
padding: 30px;
background-color: white;
border-radius: 5px;
box-shadow: 0px 0px 5px rgb(156, 156, 156);
}
table{
text-align:left;
vertical-align: middle;
border: 1px solid #e2e2e2;
border-collapse: collapse;
}
tr{
border: 1px solid #e2e2e2;
}
td{
border: 1px solid #e2e2e2;
padding: 10px;
}
table>caption{
text-align: left;
padding: 10px;
padding-left: 0px;
font-size: 22px;
font-weight: bold;
}
/* -------------------------------------------------------- */
#formDiv{
width: 600px;
height: auto;
margin-top: 50px;
padding: 30px;
background-color: white;
border-radius: 5px;
box-shadow: 0px 0px 5px rgb(156, 156, 156);
}
#formHead{
text-align: left;
padding: 10px;
padding-left: 0px;
font-size: 22px;
font-weight: bold;
}
label{
/* display: block; */
/* margin-top: 1px; */
/* margin-bottom: 3px; */
/* padding-bottom: 10px; */
}
input{
width: 590px;
border: 1;
}
#btn{
/* padding-top: 10px; */
width: 595px;
border: none;
background-color: black;
color: white;
}
#btn:hover{
background-color: rgb(34, 33, 33);
}