-
Notifications
You must be signed in to change notification settings - Fork 0
/
promo.css
99 lines (80 loc) · 1.87 KB
/
promo.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
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
}
.promo {
display: flex;
align-items: center;
/* border: 2px solid red; */
padding: 10px 10px;
background-color: #ff80ab;
/* position: fixed;
top: 0;
overflow: hidden;
width: 99%; */
}
body{
margin: 0;
padding: 0;
}
.promo_mid {
display: flex;
justify-content: space-around;
align-items: center;
/* height: 40px; */
/* border: 2px solid red; */
width: 38%;
margin: auto;
height: 40px;
}
input {
font-size: 15px;
padding: 10px 10px;
width: 34%;
outline: none;
border: 2px solid gray;
}
/* input :focus{
outline: none;
} */
.join {
font-size: 18px;
font-weight: 600;
padding: 10px 10px;
width: 13%;
border-radius: 4px;
}
input:hover {
border: 2px solid #196cff;
}
.material-symbols-outlined {
font-size: 33px;
font-weight: 800;
cursor: pointer;
}
.join {
background-color: #a378cd;
color: white;
border: none;
}
@media screen and (max-width: 1109px){
.promo_mid {
width: 50%;
}
}
@media screen and (max-width: 848px){
.promo_mid {
width: 60%;
}
}
@media screen and (max-width: 711px){
.promo_mid {
width: 80%;
}
}
@media screen and (max-width: 566px){
.promo_mid {
width: 100%;
}
}