-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (101 loc) · 1.99 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
*{
margin: 0;
padding: 0;
}
body{
height: 100%;
width: 100%;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: white;
}
.main{
position: absolute;
top: 10%;
left: 38%;
}
i{
font-size: 30px;
}
.input{
position: relative;
top: 10%;
left: 0%;
padding-top: 20%;
padding-left: 25%;
}
.input .int{
border: 2px solid rgb(173, 173, 8);
border-radius: 7px;
padding: 5px;
}
.input .int:hover{
transition: .2s ease;
border: 2px solid rgb(240, 240, 2);
border-radius: 7px;
padding: 5px;
}
.input .button{
background-color: rgba(212, 219, 197, 0);
border-radius: 12px;
border: 3px solid rgb(161, 8, 8);
padding: 7px;
width: 72%;
margin-top: 10px;
color: red;
}
.input .button:hover{
transition: .3s ease-in;
border-radius: 12px;
border: 3px solid rgb(255, 0, 0);
padding: 7px;
width: 72%;
margin-top: 10px;
font-family:Georgia, 'Times New Roman', Times, serif;
}
.attempt{
text-align: center;
padding-top: 10%;
}
span{
color: rgb(255, 0, 0);
}
@media screen and (max-width:413px){
.main{
position: absolute;
top: 10%;
left: 10%;
right: 10%;
}
.input{
position: relative;
top: 10%;
left: 0%;
padding-top: 20%;
padding-left: 25%;
}
.input .int{
border: 2px solid rgb(173, 173, 8);
border-radius: 7px;
padding: 5px;
height: 20 px;
}
.input .button{
background-color: rgba(212, 219, 197, 0);
border-radius: 12px;
border: 3px solid rgb(161, 8, 8);
padding: 10px;
width: 76%;
margin-top: 10px;
color: red;
}
.attempt{
margin: 5%;
}
.re{
margin: 4%;
}
.hint{
margin-top: 5%;
margin-bottom: 4%;
}
}