-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (70 loc) · 1.39 KB
/
style.css
File metadata and controls
83 lines (70 loc) · 1.39 KB
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
html {
box-sizing: border-box;
}
body {
background-color: #f6f7fb;
}
.container {
display: flex;
padding: 250px 500px 0px 497px;
}
.box {
position: relative;
max-width: fit-content;
margin: auto;
}
.nav {
position: relative;
max-width: fit-content;
margin: 0px auto;
}
.btn {
font-size: 18px;
padding: 5px 20px;
border: 0;
appearance: button;
margin: 30px;
border-radius: 6px;
cursor: pointer;
background-color: #3498db;
color: azure;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.btn:focus {
outline: 0;
}
.btn:active {
transform: scale(0.98);
}
.circle.active {
border: 6px solid #3498db;
}
.line.active {
border: 2px solid #3498db;
}
.circle {
background-color: white;
border-radius: 50%;
border: 6px solid #e0e0e0;
padding: 4px;
/* margin: 0px; */
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
transition: 0.6s ease;
}
.line {
min-width: 73px;
margin: 20px 0px;
min-height: 0px;
max-height: 0px;
padding: 0px;
border: 2px solid #e0e0e0;
transition: 0.6s ease;
}
.btn.disabled {
cursor: not-allowed;
background-color: #e0e0e0;
}
.btn.disabled:focus {
outline: 0;
transform: scale(1);
}