-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (55 loc) · 1.09 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
*{
margin: 10;
padding: 0;
font-family: consolas;
}
body{
background-color: rgb(35, 11, 56);
color: white;
}
table{
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #ddd;
padding: 8px;
min-width: 150px;
max-width: 150px;
}
tr:nth-child(even){ background-color: rgb(56, 23, 95); }
tr:hover, button:hover { background-color: black; color: white; }
th{
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #351e6b;
color: white;
}
button{
width: 100px;
height: 30px;
font-size: 1.2em;
font-weight: 600;
border-radius: 15px;
}
input{
height: 24px;
outline: none;
font-size: 1.3em;
border-radius: 15px;
}
input[type="text"]{
padding-left: .3em;
}
input[type="button"]{
width: fit-content;
height: fit-content;
border-radius: 15px;
}
input[type="button"]:hover {
cursor: pointer;
color : white;
background-color: black;
}