-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
136 lines (103 loc) · 2 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
body {
margin: 0;
font-family: sans-serif;
justify-content: center;
align-items: center;
color: #3091af;
}
form {
text-align: center;
}
/* Home page */
.home_page {
width: 60%;
max-width: 400px;
font-size: 15px;
margin: 50px auto;
padding: 20px;
border-radius: 10px;
border: solid 2px #3091af;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.home_page input,
label,
textarea {
width: 90%;
padding: 10px;
margin: 10px;
border-width: 1px;
border-radius: 5px;
color: #0c0b0b;
}
/* Data Form */
.dataform {
width: 80%;
max-width: 500px;
font-size: 15px;
text-align: left;
margin: 50px auto;
margin-bottom: 100px;
padding: 20px;
border-radius: 10px;
border: solid 2px #3091af;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.dataform input,
label,
textarea {
width: 90%;
padding: 10px;
margin: 10px;
border-width: 1px;
border-radius: 5px;
color: #0c0b0b;
}
.button {
width: 35%;
background: #33a0e9;
font-size: 15px;
color: #fff;
padding: 10px;
margin: 10px;
border-width: 0px;
border-radius: 5px;
}
table {
width: 80%;
border-collapse: collapse;
margin: 25px 0;
border-radius: 5px 5px 0 0;
overflow: hidden;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
table,
th,
td {
padding: 10px 5px;
text-align: left;
}
table thead tr {
background-color: #33a0e9;
color: #fff;
text-align: left;
}
table tbody tr {
border-bottom: 1px solid #dddddd;
}
table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
table tbody tr:last-of-type {
border-bottom: 2px solid #33a0e9;
}
.footer {
width: 100%;
position: fixed;
left: 0;
bottom: 0;
padding: 5px;
background-color: #0c0b0b;
color: #fff;
text-align: center;
font-size: 17px;
}