-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
65 lines (65 loc) · 1.17 KB
/
index.css
File metadata and controls
65 lines (65 loc) · 1.17 KB
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
/* Write your code here. */
* {
margin: 0px;
}
.bg-container {
background-image: url("https://assets.ccbp.in/frontend/react-js/social-buttons-bg.png");
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.btn-container {
display: flex;
flex-direction: column;
justify-content: center;
}
@media screen and (min-width: 767px) {
.btn-container {
display: flex;
flex-direction: row;
}
.comment-btn {
margin-left: 15px;
}
.share-btn {
margin-left: 15px;
}
}
.heading {
color: #ffffff;
font-family: Bree Serif;
}
.like-btn {
background-color: #eab308;
border-radius: 10px;
height: 40px;
width: 60px;
margin-top: 40px;
border-width: 0px;
color: #ffffff;
margin-left: 15px;
font-family: Roboto;
}
.comment-btn {
background-color: #ffffff;
border-radius: 10px;
height: 40px;
width: 100px;
margin-top: 40px;
border-width: 0px;
color: #323f4b;
font-family: Roboto;
}
.share-btn {
background-color: #1d4ed8;
border-radius: 10px;
height: 40px;
width: 80px;
margin-top: 40px;
border-width: 0px;
color: #ffffff;
margin-left: 15px;
font-family: Roboto;
}