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