-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadarsh.css
More file actions
130 lines (130 loc) · 2.65 KB
/
adarsh.css
File metadata and controls
130 lines (130 loc) · 2.65 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: poppins, sans-serif;
}
.certificate {
margin-top: 5rem;
background: #000000d5;
height: 65vh;
margin-bottom: 4rem;
margin-left: 15px;
margin-right: 15px;
display: flex;
justify-content: space-between;
padding: 30px;
border-radius: 20px;
}
@media screen and (max-width: 450px) {
.certificate {
flex-direction: column-reverse;
align-items: center;
margin-top: 3rem;
border-radius: 2px;
}
}
.left-certificate {
width: 55%;
height: 50vh;
margin-top: 10px;
font-size: 30px;
font-weight: 700;
color: white;
}
@media screen and (max-width: 450px) {
.left-certificate {
font-size: 20px;
width: 100%;
height: 35vh;
align-items: center;
text-align: center;
}
}
#final {
font-size: 20px;
font-weight: 400;
color: white;
}
@media screen and (max-width: 450px) {
#final {
font-size: 15px;
}
}
#butt {
padding-left: 5rem;
padding-right: 5rem;
padding-top: 1rem;
padding-bottom: 1rem;
margin-top: 1rem;
border-radius: 5px;
border: none;
margin-left: 10px;
font-weight: 600;
font-size: 20px;
letter-spacing: 2px;
cursor: pointer;
color: white;
background-color: rgb(0, 153, 255);
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
@media screen and (max-width: 450px) {
#butt {
padding-left: 2rem;
padding-right: 2rem;
margin-left: 3.35rem;
margin-left: -10px;
}
}
#butt:hover {
background-color: rgb(39, 175, 244);
}
.right-certificate {
width: 40%;
}
@media screen and (max-width: 450px) {
.right-certificate {
width: 100%;
margin-top: 30px;
}
}
.right-certificate img {
transition: all 0.5s;
cursor: pointer;
}
.right-certificate img:hover {
scale: 105%;
}
footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
color: #00000071;
}
@media screen and (max-width: 450px) {
footer {
font-size: 11px;
font-weight: 700;
}
}
.social img {
width: 30px;
transition: all 0.5s;
filter: drop-shadow(1px 1px 10px rgb(170, 168, 168));
}
@media screen and (max-width: 450px) {
.social img {
width: 23px;
}
}
.social img:hover {
transform: translateY(-7px);
filter: none;
}
.social a {
margin: 0 5px;
}