-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
107 lines (89 loc) · 1.4 KB
/
index.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
div#main {
margin-left: 50px;
min-width: 800px;
margin-top: 40px;
}
div#container {
display: flex;
grid-template-columns: repeat(1, max-content) 200px;
grid-gap: 10px;
width: 800px;
margin: 5px 0px;
margin-top: 20px;
}
button {
display: block;
border: 1px solid rgba(255, 255, 255, 0.45);
background-color: #afd8e6;
;
border-radius: 5px;
outline: 0px;
font-size: 1.3rem;
cursor: pointer;
padding: 5px 7px;
margin-top: 2px;
}
input {
padding: 8px;
margin: 2px;
width: 300px;
outline: none;
border-radius: 5px;
border: 2px solid #afd8e6;
}
select {
width: 100px;
padding: 7px;
margin-top: 2px;
margin-left: 30px;
border: 2px solid #afd8e6;
;
border-radius: 5px;
}
select:focus {
border: 2px solid #afd8e6;
;
outline: none;
}
select:hover {
border: 2px solid #afd8e6;
;
outline: none;
}
select:after {
border: 2px solid #afd8e6;
;
outline: none;
}
table {
min-width: 500px;
max-width: 950px;
border-collapse: collapse;
margin-top: 10px;
}
thead tr th {
background-color: #add8e6;
min-width: 100px;
border: 1px solid #afd8e6;
border-collapse: collapse;
text-align: left;
padding: 7px;
}
tr td {
text-align: left;
padding: 5px;
vertical-align: top;
border: 1px solid #afd8e6;
}
tr th.name {
min-width: 180px;
}
tr th.date {
width: 100px;
}
tr th.title {
min-width: 500px;
}
tr th.url {
width: 6px;
}