-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
98 lines (84 loc) · 1.41 KB
/
index.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
* {
box-sizing: 0px;
}
body {
margin: 0px;
}
.congrats-card-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url("https://assets.ccbp.in/frontend/react-js/congrats-card-bg.png");
background-size: cover;
min-height: 100vh;
}
.heading {
color: #0f172a;
font-family: "Roboto";
font-weight: 500;
font-size: 32px;
}
@media screen and (min-width: 768px) {
.heading {
font-size: 64px;
}
}
.card {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #cffafe;
width: 80%;
border-radius: 12px;
padding: 24px;
margin-top: 18px;
}
@media screen and (min-width: 768px) {
.card {
width: 50%;
padding: 48px;
margin-top: 24px;
}
}
@media screen and (min-width: 992px) {
.card {
width: 40%;
}
}
@media screen and (min-width: 1200px) {
.card {
width: 30%;
}
}
.profile-image {
width: 145px;
height: 145px;
}
.card-title {
color: #1e293b;
font-family: "Roboto";
font-weight: 500;
font-size: 24px;
margin-top: 24px;
}
@media screen and (min-width: 768px) {
.card-title {
font-size: 32px;
}
}
.card-description {
text-align: center;
color: #1e293b;
font-family: "Roboto";
font-size: 14px;
}
@media screen and (min-width: 768px) {
.card-description {
font-size: 18px;
}
}
.watch-image {
margin-top: 24px;
}