-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
164 lines (127 loc) · 2.4 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
nav {
background-color: black;
color: white;
display: flex;
flex-flow: row wrap;
justify-content: space-between;
padding: 0px 20px;
height: 60px;
align-items: center;
position: fixed;
left: 0;
right: 0;
top: 0;
font-size: 17px;
}
nav .brand {
font-size: 1.5rem;
font-weight: bold;
}
nav a {
color: white;
text-decoration: none;
}
.nav-left {
display: flex;
flex-flow: row wrap;
gap: 25px;
}
.nav-left div {
cursor: pointer;
}
.containet1 {
margin-top: 60px;
height: 200px;
display: flex;
flex-flow: column wrap;
gap: 20px;
justify-content: space-evenly;
padding-left: 20px;
}
button {
background-color: rgb(63, 61, 86, 1);
color: white;
padding: 10px 40px;
border: none;
outline: none;
border-radius: 2px;
text-shadow: 1px 1px 1px grey;
font-size: 17px;
cursor: pointer;
background-color: black;
/* box-shadow:
inset -2px -2px 3px rgb(0, 0, 0),
inset 2px 2px 3px rgb(255, 255, 255); */
}
button:hover {
outline: 2px solid black;
}
#sighupBtn {
background-color: white;
color: black;
margin-left: 10px;
box-shadow: inset 0px 0px 8px 2px rgb(221, 220, 220);
}
.img-contaner {
position: absolute;
top: 110px;
right: 0px;
z-index: -1;
}
img {
width: 900px;
}
@media (max-width:1120px) {
.img-contaner {
top: 140px;
}
}
@media (max-width:930px) {
img {
width: 110vw;
height: auto;
}
.img-contaner {
top: 260px;
}
}
#my-icon {
display: none;
}
#my-icon:hover {
cursor: pointer;
}
@media (max-width:600px) {
.nav-left {
display: none;
}
#my-icon {
display: block;
}
.nav-left2 {
position: absolute;
display: flex;
flex-flow: column wrap;
background-color: black;
border-bottom-left-radius: 15px;
right: 0px;
top: 60px;
gap: 15px;
padding: 20px 10px;
align-items: flex-start;
}
button {
padding: 10px 20px;
border-radius: 4px;
}
#sighupBtn {
padding: 8px 18px;
}
}