forked from skiadas/WebAppsLabs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathourModifications.css
More file actions
55 lines (45 loc) · 776 Bytes
/
ourModifications.css
File metadata and controls
55 lines (45 loc) · 776 Bytes
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
/* Used by elements with a class of hidden. No need to change. */
.hidden {
display: none;
}
/* Insert key-value pairs in the properties below, according to README.md */
#main {
margin: 10% 20%;
border: 1px solid #AAA;
padding: 2em;
}
h3 {
text-align: center;
font-size: 200%;
border-bottom: 2px dotted #CCC;
}
#main li {
font-size: 115%;
padding: 0.2em;
list-style-type: none;
width: 100%;
margin: 3px 0px;
border: 2px solid black;
border-radius: 10px;
}
#main li:hover {
background-color: #AEE;
}
li .remove {
float: right;
line-height: 0.9em;
}
ul {
padding: 0px;
}
.edit {
width: 100%;
}
input[type="button"] {
border: 2px solid black;
background-color: #DAB;
}
input[type="button"]:hover {
background-color: #DEF;
border-color: #CAF;
}