-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (39 loc) · 751 Bytes
/
style.css
File metadata and controls
46 lines (39 loc) · 751 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
body{
width: 100%;
color: antiquewhite;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.container{
width: 50%;
margin: 0 auto;
background: rgb(150, 150, 223);
color: whitesmoke;
text-align: center;
padding: 1em;
border-radius: 12px;
}
#notification {
background-color: blueviolet;
border-radius: 12px;
}
table{
margin: 0 auto;
}
tr, td{
border: 0.1em solid black;
padding: 1em;
}
button {
width: 7rem;
height: 2rem;
border-radius: 12px;
background-color: green;
color: white;
}
button:hover{
background-color: tomato;
}
button:active{
background-color: silver;
color: black;
}