-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutStyle.css
84 lines (73 loc) · 1.59 KB
/
AboutStyle.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
body {
background: linear-gradient(to right, #44a08d, #093637);
}
.title {
max-width: 75vw;
width: 100%;
background: linear-gradient(to right, #093028, #237a57);
color: white;
margin: 100px 10vw 0 15vw;
padding: 20px;
border-top-right-radius: 15px;
border-top-left-radius: 15px;
font-size: 3.5rem;
text-align: center;
}
.wrapper {
display: flex;
max-width: 75vw;
width: 100%;
max-height:70vh;
background: #fff;
margin: 0 10vw 5VH 15vw;
padding: 30px;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
}
.pic {
height: 53vh;
width: 26vw;
border-color: red;
background-color: white;
border-top-right-radius: 15px;
border-bottom-right-radius: 15px;
}
.pic img {
width: 26vw;
height: 63vh;
}
.wrapper .title {
font-size: 24px;
font-weight: 700;
margin-bottom: 25px;
color: #fec107;
text-align: center;
}
.wrapper .details {
width: 45vw;
margin-bottom: 15px;
position: relative;
align-items: center;
color: black;
margin-right: 10px;
font-size: 2rem;
font-weight: 600;
}
.wrapper .details img {
width: 45vw;
height: 63vh;
opacity: .5;
}
.wrapper .details p {
font-family:'Times New Roman', Times, serif;
font-size:2.55vh;
position: absolute;
top: 0;
}