-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (109 loc) · 2.03 KB
/
style.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
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
body{
margin: 0px;
}
*{
box-sizing: border-box;
}
.f-box {
min-height: 100vh;
background: url(img/img3.jpg);
background-size: cover;
background-repeat: no-repeat;
display: flex;
}
.txt{
display: flex;
justify-content: center;
align-items: center;
max-width: 340px;
font-size: 30px;
margin-left: 54rem;
margin-top: 0px;
color: black;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
audio{
margin-top: 1rem;
width: 100%;
}
.ganesh-section{
background-color: rgba(207, 143, 24, 0.849);
padding: 1rem;
}
.ganeshimg{
display: block;
margin-inline: auto; /* m-left : auto, m-right : auto */
max-width: 100%;
border-radius: 20px;
}
.horizontal-line{
display: flex;
align-items: center;
gap: 12px;
max-width: 900px;
margin-inline: auto;
margin-top: 1rem;
margin-bottom: 2rem;
}
.line{
background-color: rgba(255, 255, 255, 0.568);
width: 50%;
height: 4px;
}
.circle{
background-color: rgba(255, 255, 255, 0.568);
height: 10px;
width: 10px;
border-radius: 50%;
flex-shrink: 0;
}
.ganesh-section h1{
text-align: center;
color: white;
font-size: 30px;
}
.white-card-box{
display: flex;
justify-content: center;
align-items: center;
}
.white-card{
background-color: white;
max-width: 800px;
padding: 2rem;
border-radius: 20px;
}
.white-card-box img{
max-width: 400px;
margin-left: -5rem;
}
.white-card p{
font-family: cursive;
font-size: 1.7rem;;
}
.myname{
text-align: right;
margin-top: 2rem;
}
@media (max-width : 1100px){
.txt{
margin-left: 2rem;
color: white;
margin-right: 2rem;
}
.ganesh-section h1{
font-size: 25px;
}
.white-card p{
font-family: cursive;
font-size: 1.5rem;
margin: 1rem;
padding-right: 1rem;
}
.white-card {
padding: 1rem;
}
.white-card-box img{
width: 500px;
}
}