-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle3.css
128 lines (122 loc) · 2.01 KB
/
style3.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
.review img{
float: right;
border-radius: 10px;
margin-right: 5%;
margin-left: 5%;
}
.review h1{
font-size: 35px;
font-family: 'Roboto', sans-serif;
color: orange;
margin-top: 2%;
margin-left: 1%;
}
.review p{
margin-left: 2%;
font-size: 15px;
font-family: 'Roboto', sans-serif;
color: grey;
font-weight: 600;
line-height: 20px;
margin: 10px 20px 20px;
}
.review .burtin{
display: inline-block;
text-decoration: none;
color: white;
margin: 25px 25px 25px;
border: 2px solid grey;
border-radius: 25px;
padding: 12px 20px;
font-size: 15px;
font-family: 'Roboto', sans-serif;
background: orange;
position: relative;
cursor: pointer;
}
.burtin:hover{
border: 2px solid grey;
background: #e8630a;
transition: 1s;
}
.review h2{
font-size: 15px;
font-family: 'Roboto', sans-serif;
color: orange;
margin-top: 1%;
margin-left: 1%;
}
.review-col{
flex-basis: 44%;
border-radius: 10px;
margin-bottom: 4%;
text-align: left;
background: #f8b400;
padding: 35px;
cursor: pointer;
display: flex;
}
.review-col img{
height: 40px;
margin-left: 15px;
margin-right: 30px;
margin-top: 10px;
border-radius: 50%;
}
.review-col p{
padding: 0;
}
.review-col p{
padding: 0;
}
.review-col h3{
text-align: left;
font-size: 15px;
font-family: 'Roboto', sans-serif;
color: ghostwhite;
}
/*footer*/
.footer{
background: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
}
.footer ul li{
list-style: none;
margin-top: 20px;
left: 10%;
display: inline-block;
padding: 8px 8px;
position: relative
}
.footer ul li a{
text-decoration: none;
color: orange;
font-size: 20px;
font-family: 'Roboto', sans-serif;
}
.footer ul li::after{
content: '';
width: 0;
height: 2px;
background: grey;
display: block;
margin: auto;
transition: 0.5s;
}
.footer ul li:hover::after{
width: 100%;
}
.footer .fa{
color: orange;
margin-top: 15px;
margin-left: 5px;
}
.footer p{
align-items: center;
font-size: 10px;
font-family: 'Roboto', sans-serif;
}
@media all and (max-width: 1000px) {
.footer ul li{
left: 0%;
}
}