-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
89 lines (85 loc) · 1.53 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
html, body {
height: 100%;
width: 100%;
background-color: #D5EEBB;
display: flex;
align-items: center;
flex-direction: column;
font-family: 'Salsa';
/* overflow-y:hidden; */
}
.disk__container{
height:0px;
}
.container{
display: flex;
width:100%;
height:50%;
justify-content: space-evenly;
}
.input__container{
margin-top:35px ;
}
.tower{
height: 100%;
width: 45px;
/* max-width: 25px; */
border-radius: 12px 12px 0 0;
background-color: #7FC8A9;
}
.disk{
position: absolute;
left:0;
top:0;
border-radius:24px;
/* width:120px; */
height:50px;
/* background-color: #000; */
}
.table{
width: 70%;
border-radius:12px;
background-color: #7FC8A9;
height:45px;
}
.toh__title{
font-size: 48px;
font-weight: 400;
text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
color: #444941;
}
.input__field{
font-family: inherit;
line-height: 30px;
box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
border: none;
padding: 0px 15px 0px 15px;
margin-right: 10px;
border-radius: 10px;
transition: all 0.5s;
}
.input__field:focus{
padding: 0px 20px 0px 20px;
outline:none;
border: 2px solid #7FC8A9;
}
.submit__btn{
font-family: inherit;
padding: 0px 10px 0px 10px;
line-height: 30px;
border-radius: 10px;
margin-left: 10px;
background: #7FC8A9;
border :none;
box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
transition: all 0.5s;
}
.submit__btn:hover{
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
.submit__btn:active{
background: #7FA8A9;
}
.range__slider{
margin-top:20px;
}