-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
157 lines (131 loc) · 2.71 KB
/
style.css
File metadata and controls
157 lines (131 loc) · 2.71 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.contact-container {
display: flex;
}
.container{
/* width: 100vw;
height: 80vh; */
margin: auto;
min-height: 512px;
box-shadow: 0px 35px 70px 0px rgb(245, 245, 245), 0px 30px 40px -10px rgb(255, 255, 255);
background: linear-gradient(180deg, #ffffff,#84d2ff);
/* border-radius: 30px; */
}
@media screen and (max-width: 500px) {
body{
background: linear-gradient(180deg, #ffffff,#ffffff);
}
.container {
/* width: 100vw; */
top: 5%;
height: 100vh;
/* margin-top: 4em; */
box-shadow: none;
}
.git{
margin-bottom: 30px;
}
}
@media screen and (min-width: 600px) {
.contact-container {
margin-top: 2em;
width: 95vw;
height: 90vh;
border-radius: 30px;
}
}
.contact-container {
/* height: 90vh; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.contact-left {
display: flex;
flex-direction: column;
align-items: start;
gap: 20px;
}
.contact-left-title {
margin-top: 30%;
cursor: default;
}
.contact-left-title h2 {
font-weight: 600;
color: #393939;
font-size: 40px;
margin-bottom: 5px;
}
.contact-left-title hr {
border: none;
width: 495px;
height: 5px;
background-color: #232223;
border-radius: 10px;
margin-bottom: 20px;
}
.contact-inputs {
width: 400px;
height: 50px;
border: none;
outline: none;
outline: none;
padding-left: 25px;
font-weight: 500;
color: #666;
border-radius: 50px;
cursor:text;
}
.contact-inputs:focus {
border: 2px solif #ff994f;
}
.contact-left button {
display: flex;
align-items: center;
padding: 15px 30px;
font-size: 16px;
color: #fff;
gap: 10px;
border: none;
border-radius: 50px;
background: linear-gradient(270deg, #ff994f, #a363aa);
}
.contact-left button img {
height: 15px;
}
.contact-left button:hover {
background: linear-gradient(270deg, #feac72, #ad75b3);
cursor: pointer;
}
@media(max-width:800px) {
.contact-inputs {
width: 80vw;
}
.contact-left-title {
width: 80vw;
text-align: center;
}
.contact-container hr {
width: auto;
}
.contact-right {
display: none;
}
}
.git a img {
width: 40px;
}
.git {
height: 20vh;
}
@media screen and (max-width:400px) {
.sub{
display: flex;
margin-left: 5em;
}
}