-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
53 lines (53 loc) · 971 Bytes
/
stylesheet.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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
.row1 {
border: 1px thick lightskyblue;
height: 60px;
color: white;
background-color: skyblue;
}
.row2 {
/* border: 1px thick lightskyblue; */
height: 100px;
color: white;
background-color: skyblue;
}
.col-md-2 {
position: relative;
width: 100%;
top: 14px;
padding-left: 0;
padding-right: 0;
}
h1{
margin-left: 7px;
font-size: 30px;
}
#i01{
text-align: center;
font-size: 50px;
margin-left: 10px;
color: white;
border: 1px solid black;
width: 70px;
height: 70px;
background-color: lightcoral;
padding: 10px;
}
#i02 {
font-size: 40px;
margin-left: 70%;
}
.list-group-item {
background-color: rgb(104, 177, 104);
height: 116px;
font-size: 23px;
color: white;
}
.a01:hover {
background-color: rgb(104, 177, 104);
color: white;
}