-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (85 loc) · 1.55 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
body{
background-color: black;
font-family: Arial, sans-serif;
margin: 1vw;
padding: 0;
}
span{
color:forestgreen;
}
button{
background-color: forestgreen;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0 auto;
padding: 1vw;
width: 50vw;
height: 50vh;
border: 1px solid lawngreen;
border-radius: 10px;
color: white;
margin-top:10vw;
}
hr{
width: 70%;
border: 1px solid lawngreen;
}
.tex{
display: flex;
flex-direction: row;
gap: 2vw;
}
button {
width: 20vw;
height: 5vh;
border-radius: 2vw;
margin-top: 2vw;
font-size: 1vw;
font-weight: bolder;
color: white;
border: none;
cursor: pointer;
}
button:hover{
background-color: lawngreen;
color: black;
}
#pass1, #pass2{
width: 10vw;
height: 10px;
margin-top: 1vw;
border-radius: 2vw;
margin-top: 2vw;
font-size: 1vw;
padding: 1vw;
color: forestgreen;
background-color: white;
border: none;
padding-left: 1vw;
font-weight: bolder;
}
@media screen and (max-width: 480px) {
body {
font-size: 14px;
}
button{
font-size: 3vw;
width: 40vw;
height: 3vh;
}
.container{
width: 90vw;
height: 50vh;
text-align: center;
margin-top: 40vw;
}
#pass1, #pass2{
width: 35vw;
height: 10px;
font-size: 3vw;
}
}