-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage0.css
166 lines (145 loc) · 3.07 KB
/
page0.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* Common styles for body and container */
body {
background-color: #38444d;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}
.container {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/* Styles for the card */
.card {
max-width: 400px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(230, 227, 227, 0.548);
border: solid rgb(6, 16, 46);
margin: 10px; /* Add some margin to the card to reduce free space */
}
/* Heading styling */
.headname {
background-image: linear-gradient(to left, lightskyblue, royalblue, lightskyblue);
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
border-radius: 10px 10px;
margin-bottom: 20px; /* Add margin at the bottom of the header */
}
.headname img {
max-height: 50px;
border-radius: 50%;
margin-right: 10px;
}
.headname h1 {
font-size: 32px;
color: white;
margin-bottom: 0;
}
/* Card header styling */
.card-header {
background-image: linear-gradient(to left, lightskyblue, royalblue);
color: white;
text-align: center;
font-size: 24px;
font-weight: bold;
padding: 15px 0;
border-radius: 10px 10px 0 0;
margin: 0; /* Remove the margin to reduce free space */
}
/* Card body styling */
.card-body {
padding: 20px;
}
.form-group label {
font-size: 20px;
font-weight: bold;
color: #333;
}
.form-control {
font-size: 18px;
padding: 12px ;
border: 1px solid #ccc;
border-radius: 5px;
}
/* Card footer styling */
.card-footer {
background-color: #dfdede;
color: #222222;
text-align: right;
font-size: 14px;
padding: 10px;
border-top: 1px solid #ccc;
border-radius: 0 0 10px 10px;
}
.card-footer a {
text-decoration: none;
color: #333333;
}
.card-footer a:hover {
color: #000000;
}
/* Primary button styling */
.btn-primary {
margin-top: 20px;
background-color: #2485c5;
color: #fff;
border: none;
border-radius: 8px;
padding: 8px 50px;
font-size: 30px;
cursor: pointer;
z-index: 9999;
animation: pulsate 2s infinite;
}
.btn-primary b {
position: relative;
z-index: 2;
}
@keyframes pulsate {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
/* Media Queries */
/* (Your media query rules here) */
/* @media (min-width: 769px) {
html{
font-size: 45%;
}
}
@media (max-width: 1024px){
html{
font-size: 55%;
}
} */
@media (min-width: 769px) {
/* Larger font size for screens wider than 768px */
.form-group label {
font-size: 24px;
}
.container {
height: 50vh;
}
.form-control {
font-size: 18px;
padding: 15px 25px;
border: 1px solid #ccc;
border-radius: 5px;
}
}
@media (max-width: 768px) {
/* Smaller font size for screens up to 768px */
.form-group label {
font-size: 16px;
}
}