-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
128 lines (109 loc) · 2.55 KB
/
style.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: hsl(0, 0%, 81%);
align-items: center;
justify-content: center;
height: 100vh;
margin: 40px;
.top-combo{
display: flex;
}
/* .left-combo{
display: ;
} */
.bottom-combo{
display: flex;
}
.wrapper{
display:flex ;
justify-content: center;
align-items: center;
.btext-2{
color:hsl(217, 19%, 35%);
}
.btext-1{
color: hsl(0, 0%, 81%);
}
.testimony{
color: hsl(0, 0%, 81%);
}
.testimony-1{
color:hsl(217, 19%, 50%);
}
.name{
color: hsl(0, 0%, 81%);
}
.name-1{
color:hsl(217, 19%, 50%);
}
.title{
color: hsl(0, 0%, 50%);
}
}
.purple-box{
background-color: hsl(263, 55%, 52%);
border-radius: 10px;
padding: 15px ;
margin-right: 20px;
background-image: url(images/bg-pattern-quotation.svg);
background-repeat: no-repeat;
background-position: top right;
/* background-image: url(<svg width="104" height="102" xmlns="http://www.w3.org/2000/svg"><path d="M104 102V59.727H84.114c0-5.871.689-11.182 2.068-15.933 1.379-4.75 3.42-9.287 6.125-13.61C95.01 25.86 98.909 22.257 104 19.375V0c-9.758 4.27-17.712 9.874-23.864 16.813-6.151 6.939-10.712 14.545-13.681 22.818C63.485 47.904 62 59.941 62 75.74V102h42zm-62 0V59.727H22.114c0-5.871.689-11.182 2.068-15.933 1.379-4.75 3.42-9.287 6.125-13.61C33.01 25.86 36.909 22.257 42 19.375V0c-9.652 4.27-17.58 9.874-23.784 16.813C12.01 23.752 7.424 31.358 4.455 39.631 1.485 47.904 0 59.941 0 75.74V102h42z" fill="#A775F1" fill-rule="nonzero"/></svg>) left top no-repeat; */
}
.grey-box{
background-color:hsl(217, 19%, 35%);
border-radius: 10px;
padding: 20px;
width: 250px;
margin-right: 20px;
}
.white1-box{
background-color: hsl(0, 0%, 100%);
border-radius: 10px;
padding: 20px;
width: 260px;
margin-top: 20px;
margin-right: 20px;
}
.black-box{
background-color:hsl(219, 29%, 14%) ;
border-radius: 10px;
padding: 20px;
width: 530px;
margin-top: 20px;
margin-right: 20px;
}
.white2-box{
background-color: hsl(0, 0%, 100%);
border-radius: 10px;
padding: 15px;
/* margin-top: 30px; */
width: 250px;
}
.info-box{
display: flex;
gap: 20px;
}
.testimony{
margin-top: 20px;
}
.btext-1{
margin-top: 20px;
color: white;
}
.image-borders{
width:40px;
height:40px;
border-radius:50%;
}
@media screen and (max-width:375px){
.wrapper{
display: grid;
justify-content: center;
align-items: center;
}
}