-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (103 loc) · 1.84 KB
/
style.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
body {
margin: 0;
place-items: center;
min-width: 320px;
min-height: 100vh;
font-family: "Montserrat Alternates", sans-serif;
color: #00cad3;
display: flex;
justify-content: center;
background-image: url("robot.png");
background-color: #252b48;
background-blend-mode: overlay;
background-size: 25rem;
background-repeat: repeat-y;
background-position: right;
}
.container {
display: flex;
}
.input {
border: #6a878994 0.2px solid;
height: 300px;
width: 350px;
max-width: 500px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.input-text {
font-size: 16px;
text-align: left;
white-space: normal;
font-family: "Montserrat Alternates", sans-serif;
color: #252b48;
width: 95%;
border: none;
outline: none;
resize: none;
padding: 10px 10px 201px 10px;
overflow-y: scroll;
}
.input-text::-webkit-scrollbar {
display: none;
}
.input-text:focus {
border: none;
outline: none;
}
.input-choice {
height: 50px;
display: flex;
justify-content: space-around;
background-color: #252b48;
}
select {
border: 1px solid transparent;
font-size: 1em;
font-family: inherit;
background-color: #252b48;
color: inherit;
cursor: pointer;
width: 100%;
}
select option {
font-size: 1.2em;
}
select:focus {
outline: none;
position: relative;
z-index: 1;
}
@media (max-width: 768px) {
body {
background-size: cover;
background-position: center;
}
.container {
flex-direction: column;
align-items: center;
padding-top: 20px;
}
.input {
width: 95%;
margin-bottom: 20px;
}
.input-text {
width: 95%;
}
.input-choice {
flex-direction: column;
background-color: transparent;
}
select {
font-size: 14px;
width: 100%;
margin-top: 10px;
}
}
@media (max-width: 312px) {
.input-text {
width: 75%;
}
}