-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
86 lines (84 loc) · 1.36 KB
/
style1.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
85
86
*{
padding: 0;
margin: 0;
}
.banner{
min-height: 100vh;
width: 100%;
background: linear-gradient(68.6deg, rgb(252, 165, 241) 1.8%, rgb(181, 255, 255) 100.5%);
background-position: center;
background-size: cover;
position: relative;
}
.title{
width: 80%;
margin: auto;
text-align: center;
padding-top:100px;
}
.title h1{
font-size: 36px;
font-weight: 600;
color: #8594e4;
font-family: 'Ubuntu', sans-serif;
}
.title h1::after{
content: '';
width: 15%;
height: 3px;
background: whitesmoke;
display: block;
margin: auto;
margin-top: 10px;
}
img {
width: 150px;
height: 150px;
border-radius: 50%;
margin-bottom: 25px;
border: solid 3px;
border-color: #d59bf6;
}
div {
display: flex;
justify-content: center;
margin-top: 15px;
}
.review{
margin: 25px 350px 100px 350px;
text-align: center;
border-radius: 12px;
background: whitesmoke;
padding: 25px;
display: block;
}
.review h2{
margin-bottom: 5px;
font-size: 25px;
font-weight: 600;
color: #d59bf6;
font-family: 'Ubuntu', sans-serif;
}
.review h3{
font-size: 20px;
font-weight: 600;
color: #8594e4;
font-family: 'Ubuntu', sans-serif;
}
.review p{
font-size: 15px;
font-weight: 600;
line-height: 20px;
padding: 10px;
color: #d59bf6;
font-family: 'Ubuntu', sans-serif;
}
.fa{
color: #8594e4;
margin: 5px;
}
@media all and (max-width: 1050px){
.review{
margin: 15px 20px 20px 20px;
}
}