-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (40 loc) · 743 Bytes
/
Copy pathstyles.css
File metadata and controls
40 lines (40 loc) · 743 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
body{
background-color:bisque;
display: flex;
align-items: center;
}
html,body{
width: 100%;
height: 100%;
}
div{
/* background-color: rgb(225, 14, 14);
*/
text-align: center;
font-size: xx-large;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
width: 100%;
height: 50%;
}
#box1{
display: flex;
align-items: center;
justify-content: center;
background-color: chartreuse;
width: 100%;
height: 50%;
border-style:dotted;
border-width: 5px;
/* padding: 10px;
*/
border-radius: 15px;
}
#box2{
display: flex;
align-items: center;
justify-content: center;
background-color: blue;
width: 100%;
height: 50%;
}