-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
71 lines (70 loc) · 1.07 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
h1{
color:#292f7d;
text-align:center;
margin: 1px;
}
h2{
font-size:x-large;
color:rgb(150, 2, 2);
text-align:center;
}
h3{
text-align:left;
color:#292f7d;
font-style: italic;
}
p{
text-align:left;
font-weight: 500;
font-size: 18px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color:white
}
table{
border:2px solid #292f7d;
border-collapse: collapse;
width:1400px;
}
th,td{
border:2px solid#ffffff;
padding:5px;
text-align: center;
}
th{
background-color:red;
color:rgb(61, 102, 0);
font-size: larger;
}
td{
color: honeydew;
}
img{
float: right;
width: 50%;
}
ul{
font-weight: bold;
color:white;
}
button{
color: white;
background-color: blue;
}
.container {
display: flex;
flex-wrap: wrap;
}
.container > div {
font-size: 20px;
margin: 50px;
padding: 25px;
width: 150px;
background-color: #292f7d;
color: white;
text-align: center;
font-style:italic ;
font-size: 20px;
}
p::selection {
background-color: lightgray;
}