-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
63 lines (54 loc) · 934 Bytes
/
styles.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
* {
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
padding: 100px 0;
background-color: #dbe6fd;
color: #293b5f;
}
.content {
padding: 10px 10px;
width: 75vw;
border: 3px solid rgb(74, 106, 165);
}
.heading {
align-items: center;
display: flex;
justify-content: center;
}
.name {
text-align: center;
background-color: #dbe6fd;
display: inline-block;
transform: translateY(-40px);
padding: 0 40px;
}
.name > h1 {
font-size: 3rem;
}
.details {
display: flex;
line-height: 1.6;
}
.left-content {
width: 48%;
border-right: 3px solid rgb(74, 106, 165);
}
.left-content > div {
padding: 30px;
}
.left-content h2 {
margin-bottom: 10px;
}
.right-content {
padding: 0 10px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.right-content > div {
padding: 30px;
}