-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (60 loc) · 1.21 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
body{
text-align: center;
color: white;
}
.main{
/* border: 2px solid red; */
display: flex;
width: 100%;
height: 100%;
margin-top: 2rem;
align-items: center;
justify-content: center;
}
input{
border: none;
text-align: center;
padding: 0.6rem 0px;
font-size: 2rem;
font-family: seirf;
border-radius: 10px;
outline: none;
}
.container{
border: none;
background-color: #0e0324;
padding: 17px 17px;
border-radius: 5px;
font-family: seirf;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 80%;
}
.container button{
font-size: 1.6rem;
padding: 8px 0px 8px 0px;
border-radius: 10px;
border: none;
font-family: seirf;
background-color: #5c1182;
color: white;
padding: 10px 10px;
}
.container button:hover{
cursor: pointer;
background-color: #9017cd;
}
@media(max-width:1000px){
body{
font-size: 5px;
}
.container{
width: 16rem;
}
input{
font-size: 0.8rem;
width: 80%;
}
}