forked from dinesh0085/Shemrush-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
semrush-bottom.css
112 lines (99 loc) · 2.25 KB
/
semrush-bottom.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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: sans-serif;
}
#semrush-bottom{
width: 100%;
background-color: #111317;
padding: 50px 50px;
color: white;
}
#semrush-bottom > #semrush-bottom-header{
justify-content: space-around;
display: grid;
grid-template-columns: 35% 25% 35%;
grid-template-rows: auto;
gap: 30px;
}
#semrush-bottom > #semrush-bottom-header > div:first-child{
display: flex;
justify-content: space-around;
align-items:baseline;
}
#semrush-bottom > #semrush-bottom-header > div:first-child > div select{
background-color:#111317 ;
width: 100%;
border: 1px solid white;
padding: 10px 20px;
border-radius: 5px;
color: white;
margin-left: 20px;
}
#semrush-bottom > #semrush-bottom-header > div:nth-child(3){
display: flex;
flex-direction: column;
align-items: center;
}
#semrush-bottom > #semrush-bottom-header > div:nth-child(3) > button{
width: 80%;
padding: 10px 20px;
border: none;
color: white;
background-color: #00BC98;
border-radius: 5px;
font-size: 18px;
}
#semrush-bottom > #semrush-bottom-middle{
border: 1px solid grey;
margin: auto;
width: 93%;
padding: 15px 0px 20px 0px;
margin-top: 40px;
border-radius: 5px;
}
#semrush-bottom > #semrush-bottom-middle > div{
width: 60%;
display: flex;
margin: auto;
justify-content: space-between;
font-size: 13px;
color: grey;
align-items: center;
}
#semrush-bottom-last{
width: 93%;
margin: auto;
}
#semrush-bottom-last{
width: 93%;
margin-top: 50px;
font-size: 13px;
}
#semrush-bottom-last > #semrush-bottom-last-company{
display: flex;
}
#semrush-bottom-last > #semrush-bottom-last-company > div{
margin-right: 95px;
}
#semrush-bottom-last li{
list-style: none;
line-height: 23px;
color: gray;
}
#semrush-website-copyright{
background-color: #000000;
padding: 25px;
display: flex;
align-items: center;
}
#semrush-website-copyright img{
width: 160px;
margin-left: 8vw;
}
#semrush-website-copyright p{
color: gray;
font-size: 12px;
margin: 0px 0px 0px 50px;
}