-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·84 lines (73 loc) · 1.46 KB
/
style.css
File metadata and controls
executable file
·84 lines (73 loc) · 1.46 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
@import url("./css/fonts.css");
:root {
--lighterGray: #d1d1d1;
--lightGray: #2a3647;
--lightBlue: #29abe2;
--intenseBlue: #007cee;
--darkBlue: #091931;
--darkBlueHover: #19273d;
--green: #7ae229;
--organe: #ff3d00;
--orangeIcons: #ff7a00;
--red: #ff3d00;
--yellow: #ffa800;
--pink: #fc71ff;
--mintGreen: #1fd7c1;
--whiteGray: #f6f7f8;
--white: #fff;
--wrongInputBorder: #ff001f;
--wrongInputText: #ff8190;
--fontGray: #a8a8a8;
--fontWhite: #cdcdcd;
--black: #000000;
--purple: #9327ff;
--curry: #ffbb2b;
--greenIcon: #1fd7c1;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
html {
scroll-behavior: smooth;
}
.hide {
display: none;
}
.show {
display: flex;
}
.registerMain {
flex-direction: column;
}
.loginMain {
display: flex;
flex-direction: column;
}
button {
cursor: pointer;
}
@media only screen and (max-width: 720px) and (min-width: 250px) {
body {
display: flex;
flex-direction: column;
}
.mainContent {
min-height: calc(100dvh - 3.5rem);
display: flex;
justify-content: center;
background-color: var(--whiteGray);
}
}
@media only screen and (max-width: 2560px) and (min-width: 721px) {
.mainContent {
height: 100dvh;
bottom: 0;
display: flex;
padding-left: 160px;
padding-top: 56px;
background-color: var(--whiteGray);
}
}