-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
54 lines (47 loc) · 892 Bytes
/
main.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
body {
background-color:#d5e1ef;
}
.main-div {
width: 320px;
height: 497px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
border-radius: 10px;
}
img {
height: 100%;
width: 100%;
border-radius: 10px;
}
.div-img {
height: 290px;
width: 290px;
position: absolute;
top: 32%;
left: 50%;
transform: translate(-50%, -50%);
}
div h1 {
font-size: 21px;
font-family: Arial, Helvetica, sans-serif, bold;
color: #1f314f;
margin: 3px;
position: relative;
top: 315px;
}
div p {
font-size: 16px;
font-family: Arial, Helvetica, sans-serif;
color: #7d889e;
margin: 3px;
position: relative;
top: 310px;
}
div h1,
div p {
padding: 10px;
text-align: center;
}