Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

style.css 4.0 KB

You have to be logged in to leave a comment. Sign In
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
167
168
169
170
171
  1. body {
  2. margin: 0;
  3. }
  4. .page-content {
  5. width: 100%;
  6. margin: 0 auto;
  7. background: #4077c8;
  8. display: flex;
  9. display: -webkit-flex;
  10. justify-content: center;
  11. -o-justify-content: center;
  12. -ms-justify-content: center;
  13. -moz-justify-content: center;
  14. -webkit-justify-content: center;
  15. align-items: center;
  16. -o-align-items: center;
  17. -ms-align-items: center;
  18. -moz-align-items: center;
  19. -webkit-align-items: center;
  20. }
  21. .form-v9-content {
  22. width: 975px;
  23. border-radius: 15px;
  24. -o-border-radius: 15px;
  25. -ms-border-radius: 15px;
  26. -moz-border-radius: 15px;
  27. -webkit-border-radius: 15px;
  28. margin: 185px 0;
  29. font-family: 'Nunito', sans-serif;
  30. color: #fff;
  31. font-weight: 700;
  32. font-size: 16px;
  33. position: relative;
  34. }
  35. .form-v9-content .form-detail {
  36. padding: 30px 135px 30px 100px;
  37. position: relative;
  38. }
  39. .form-v9-content .form-detail h2 {
  40. font-size: 35px;
  41. text-align: center;
  42. position: relative;
  43. padding: 16px 0 13px;
  44. margin-bottom: 55px;
  45. }
  46. .form-v9-content .form-detail h2::after {
  47. background: #fff;
  48. width: 73px;
  49. height: 3px;
  50. content: "";
  51. position: absolute;
  52. top: 100%;
  53. left: 50%;
  54. transform: translateX(-50%);
  55. -o-transform: translateX(-50%);
  56. -ms-transform: translateX(-50%);
  57. -moz-transform: translateX(-50%);
  58. -webkit-transform: translateX(-50%);
  59. }
  60. .form-v9-content .form-row-total {
  61. display: flex;
  62. display: -webkit-flex;
  63. justify-content: space-between;
  64. -o-justify-content: space-between;
  65. -ms-justify-content: space-between;
  66. -moz-justify-content: space-between;
  67. -webkit-justify-content: space-between;
  68. }
  69. .form-v9-content .form-row {
  70. width: 45%;
  71. }
  72. .form-v9-content .form-detail .form-row-last {
  73. text-align: center;
  74. }
  75. .form-v9-content .form-detail .input-text {
  76. margin-bottom: 45px;
  77. }
  78. .form-v9-content .form-detail input {
  79. width: 100%;
  80. padding: 14.5px 0px 14.5px 30px;
  81. border: 2px solid #ccc;
  82. appearance: unset;
  83. -moz-appearance: unset;
  84. -webkit-appearance: unset;
  85. -o-appearance: unset;
  86. -ms-appearance: unset;
  87. outline: none;
  88. -moz-outline: none;
  89. -webkit-outline: none;
  90. -o-outline: none;
  91. -ms-outline: none;
  92. border-radius: 27.5px;
  93. -o-border-radius: 27.5px;
  94. -ms-border-radius: 27.5px;
  95. -moz-border-radius: 27.5px;
  96. -webkit-border-radius: 27.5px;
  97. font-family: 'Nunito', sans-serif;
  98. font-size: 16px;
  99. font-weight: 700;
  100. background: rgba(255, 255, 255, 0.2)
  101. }
  102. .form-v9-content .form-detail input:focus {
  103. border: 2px solid #999;
  104. }
  105. .form-v9-content .form-detail .register {
  106. background: #f25d5d;
  107. border-radius: 25px;
  108. -o-border-radius: 25px;
  109. -ms-border-radius: 25px;
  110. -moz-border-radius: 25px;
  111. -webkit-border-radius: 25px;
  112. width: 180px;
  113. box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  114. -o-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  115. -ms-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  116. -moz-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  117. -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  118. border: none;
  119. margin: 20px 0 73px 35px;
  120. cursor: pointer;
  121. font-family: 'Nunito', sans-serif;
  122. color: #fff;
  123. font-weight: 700;
  124. font-size: 16px;
  125. }
  126. .form-v9-content .form-detail .register:hover {
  127. background: #d95252;
  128. }
  129. .form-v9-content .form-detail .form-row-last input {
  130. padding: 14px;
  131. }
  132. input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  133. color: #e5e5e5;
  134. font-size: 16px;
  135. }
  136. input::-moz-placeholder { /* Firefox 19+ */
  137. color: #e5e5e5;
  138. font-size: 16px;
  139. }
  140. input:-ms-input-placeholder { /* IE 10+ */
  141. color: #e5e5e5;
  142. font-size: 16px;
  143. }
  144. input:-moz-placeholder { /* Firefox 18- */
  145. color: #e5e5e5;
  146. font-size: 16px;
  147. }
  148. /* Responsive */
  149. @media screen and (max-width: 1199px) {
  150. .form-v9-content {
  151. margin: 185px 20px;
  152. }
  153. }
  154. @media screen and (max-width: 767px) {
  155. .form-v9-content .form-row-total {
  156. flex-direction: column;
  157. -o-flex-direction: column;
  158. -ms-flex-direction: column;
  159. -moz-flex-direction: column;
  160. -webkit-flex-direction: column;
  161. }
  162. .form-v9-content .form-row {
  163. width: 100%;
  164. }
  165. }
  166. @media screen and (max-width: 575px) {
  167. .form-v9-content .form-detail {
  168. padding: 30px 45px 30px 10px;
  169. }
  170. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...