View sourcecode

The following files exists in this folder. Click to view.

style.css

33 lines ASCII Unix (LF)
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
.container{
    border: 1px solid black;
    display: flex;
    flex-wrap: wrap;
    padding: 2px;
}
.box{
    border: 1px solid black;
    margin: 2px;
    width: 66%;
}
.box1{
    border: 1px solid black;
    margin: 2px;
    width: 33%;
}
.box p{
    padding: 2px;
    margin: 0px;
}
.box1 p{
    padding: 2px;
    margin: 0px;
}
.orange{
    background-color: orange;
}
.yellow{
    background-color: yellow;
}
.red{
    background-color: red;
}