-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstylesheet.css
84 lines (73 loc) · 1.27 KB
/
stylesheet.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
body {
background-color: rgb(170, 161, 212);
text-align: center;
}
button {
background-color: rgba(0,0,0,0);
outline: none;
}
h2 {
margin-bottom: 10px;
}
.btn {
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
display: block;
}
input {
width: 100%;
padding: 5px 14px;
border: 2px solid #201f1d;
margin-bottom: 10px;
background-color: rgba(0,0,0,.4);
outline: none;
color: #fff;
font-size: 14px;
}
input:focus {
border: 2px solid rgba(0,0,0,.4);
background-color: rgb(60,60,60);
}
form {
background-color: #fff;
padding: 20px;
color: #000;
box-shadow: 0 2px 4px 0 rgba(0,0,0,.4);
}
form p {
margin-bottom: 5px;
}
form p:nth-child(1){
margin-top: 0;
}
.panel {
margin-top: 20px;
float: none;
}
@media (min-width: 768px) {
.panel {
width: 50%;
margin-left: auto;
margin-right: auto;
}
}
@media (min-width: 1024px) {
.panel {
width: 30%;
margin-left: auto;
margin-right: auto;
}
}
table{
height: 100px;
width: 550px;
background-color: rgb(182, 202, 195);
margin: 0 auto;
border: 5px solid cornflowerblue;
}
table.th,td{
margin: auto;
text-align: center;
border: 1px solid black ;
}