-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
112 lines (101 loc) · 1.83 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
/* styles.css */
h1 {
display: flex;
height: 75px;
line-height: 75px;
background-color: #28D29F;
justify-content: center;
color: white;
font-family: Arial;
white-space: nowrap;
}
ul {
padding: 0;
list-style-type: none;
}
li {
list-style-type: none;
margin: 5px;
padding: 10px;
overflow: hidden;
background-color: #28D29F;
border-radius: 15px;
color: white;
font-family: Arial;
font-weight: bold;
display: flex;
flex-direction: row;
align-items: center;
}
.division {
float: left;
padding-right: 20px;
}
.divisionName {
float: left;
width: 200px;
padding-right: 20px;
}
.view {
background-color: white;
color: #28D29F;
text-align: center;
font-family: Arial;
font-weight: bolder;
border-radius: 5px;
border: none;
padding: 5px 15px;
}
.delete {
background-color: #FF3333;
color: white;
text-align: center;
font-family: Arial;
font-weight: bolder;
border-radius: 20px;
border: none;
}
form {
margin: 5px;
padding: 10px;
background-color: #28D29F;
border-radius: 15px;
color: white;
font-family: Arial;
font-weight: bold;
display: flex;
flex-direction: row;
align-items: center;
}
input {
border: none;
padding: 5px;
margin-right: 10px;
}
table {
border-spacing: 20px 15px;
}
.entry {
margin: 25px;
padding: 10px 25px;
width: 150px;
height: 25px;
background-color: #28D29F;
border-radius: 10px;
color: white;
font-family: Arial;
font-weight: bold;
}
.add-entry {
margin: 25px;
padding: 10px 25px;
width: 150px;
height: 25px;
background-color: white;
border-radius: 10px;
color: black;
border: 1px solid;
border-color: black;
font-family: Arial;
font-weight: bold;
}