-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
151 lines (127 loc) · 2.37 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
}
body {
font-family: Arial, sans-serif;
background: linear-gradient(90deg, hsla(179, 67%, 66%, 1) 0%, hsla(238, 74%, 61%, 1) 100%);
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.container {
display: flex;
flex-wrap: wrap;
width: 100%;
max-width: 1200px;
gap: 20px;
}
.leftbox, .rightbox {
flex: 1 1 45%;
padding: 20px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
gap: 20px;
}
.firstpart1, .firstpart2, .secondpart1, .secondpart2 {
padding: 12px;
}
.firstpart1 p {
font-size: 22px;
font-weight: bold;
text-align: center;
}
.firstpart1 span {
color: #ff5722;
font-weight: bold;
}
.button {
margin-top: 10px;
padding: 9px 20px;
font-size: 16px;
color: white;
background-color: rgb(36, 139, 183);
border: none;
border-radius: 12px;
transition: background-color 0.3s;
}
.button:hover {
background-color: rgb(30, 51, 170);
}
.image-circle {
width: 150px;
height: 150px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto;
border: 3px solid #4285F4;
display: flex;
justify-content: center;
align-items: center;
}
.circle-img {
width: 100%;
height: 100%;
object-fit: cover;
}
form {
display: flex;
flex-direction: column;
gap: 10px;
}
form input, form select, form textarea, form button {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 5px;
}
form button {
background-color: rgb(36, 139, 183);
color: white;
font-size: 16px;
transition: background-color 0.3s;
}
form button:hover {
background-color: rgb(30, 51, 170);
}
.secondpart2 {
font-family: 'Poppins', sans-serif;
margin-top: 20px;
font-size: 18px;
font-weight: bold;
color: black;
}
@media (max-width: 768px) {
.container {
flex-direction: column;
align-items: center;
}
.leftbox, .rightbox {
width: 90%;
}
.image-circle {
width: 120px;
height: 120px;
}
.button {
font-size: 14px;
}
}
@media (max-width: 480px) {
.firstpart1 p {
font-size: 18px;
}
.secondpart2 {
font-size: 16px;
}
.button {
padding: 6px 12px;
}
}