-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscriber_view_counter.css
57 lines (50 loc) · 1.17 KB
/
subscriber_view_counter.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
/* SUBSCRIBER AND VIEWS COUNTER CSS */
.subscriber_views_counter{
width: 99vw;
display: flex;
justify-content: space-evenly;
align-items: center;
/* border: 2px solid black; */
margin: 100px 4px;
}
.total_subscriber_container{
width: 40%;
display: flex;
flex-direction: column;
place-content: center;
margin: 20px;
}
.total_subscriber{
display: flex;
place-content: center;
/* border: 2px solid green; */
}
.total_views_container{
width: 40%;
display: flex;
flex-direction: column;
place-content: center;
margin: 20px;
}
.total_views{
/* width: 40%; */
display: flex;
place-content: center;
/* border: 2px solid rgb(240, 54, 21); */
}
.total_subscriber_container > h1 , .total_views_container > h1{
text-align: center;
color: rgba(22,22,55,1);
font-family: 'Popins' , sans-serif;
font-size: 2.7rem;
font-weight: 400;
}
.total_views > div , .total_subscriber > div{
color: rgba(22,22,55,1);
font-size: 2.5rem;
font-family: 'Popins' , sans-serif;
background-color: rgba(243,244,246,1);
border-radius: .75rem;
margin: 4px .25rem;
padding: .5rem 1rem;
}