-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (52 loc) · 930 Bytes
/
style.css
File metadata and controls
55 lines (52 loc) · 930 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: bisque;
}
.container {
text-align: center;
height: 70%;
padding: 15px;
background-color: rgb(143, 209, 209);
position: absolute;
border-radius: 25px;
border: 5px solid rgba(0, 0, 0, 0.657);
top: 10%;
left: 40%;
}
.animated {
box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.808);
border-radius: 10px;
}
.input-box {
margin-bottom: 11px;
margin-top: 15px;
padding: 5px;
font-size: 17px;
font-weight: bold;
}
.btn-item {
padding: 7px;
font-weight: 700;
}
.btn-item:active {
box-shadow: 1px 1px 3px 0px rgba(114, 110, 110, 0.671);
transform: translateY(2px);
}
.btn-item:hover {
cursor: pointer;
transform: translateY(-1px);
}
.ol-list > li {
margin-left: 17px;
line-height: 35px;
font-weight: 600;
font-size: 18px;
border-bottom: 1px solid rgba(0, 0, 0, 0.808);
}
.click {
cursor: pointer;
}