-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (69 loc) · 1.27 KB
/
styles.css
File metadata and controls
72 lines (69 loc) · 1.27 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
*{
padding: 0;
margin: 0;
}
body {
font-family: 'Times New Roman', Times, serif;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(0, 13, 71);
}
.wrapper{
height: fit-content;
width: 40vw;
padding: 2rem;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: center;
border-radius: 1rem;
}
span {
font-size: 1.8rem;
font-weight: 900;
}
select {
padding: .5rem;
margin-top: .5rem;
background-color: white;
max-width: 90%;
}
input {
padding: .8rem;
border: none;
outline: none;
background-color: rgb(0, 13, 71);
border-bottom: 2px solid black;
width: 60%;
font-weight: bold;
border-top-right-radius: .3rem;
border-top-left-radius: .3rem;
color: white;
text-align: center;
font-size: 1.2rem;
}
input::placeholder{
color: white;
font-weight: 300;
opacity: .6;
}
button{
color: white;
outline: none;
cursor: pointer;
padding: .8rem;
border:none;
border-radius: 2.5rem;
background-color: rgb(0, 13, 71);
}
@media only screen and (max-width:500px) {
input{
width: 90%;
}
.wrapper{
width: 50vw;
}
}