-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
102 lines (86 loc) · 1.56 KB
/
styles.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
@import url('https://fonts.googleapis.com/css?family=Khula&display=swap');
* {
box-sizing: border-box;
}
body {
color: #fff;
font-family: 'Khula', sans-serif;
height: 100vh;
overflow: hidden;
margin: 0;
text-align: center;
}
a {
color: #fff;
text-decoration: none;
}
a:hover {
color: #16D9E3;
}
.start {
font-size: 1.5rem;
}
h1 {
line-height: 1.4;
font-size: 4rem;
}
.screen {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
transition: margin 0.5s ease-out;
background: linear-gradient(90deg, #29323C 0%, #485563 100%);
}
.screen.up {
margin-top: -100vh;
}
.time-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
list-style: none;
padding: 0;
}
.time-list li {
margin: 10px;
}
.time-btn {
background-color: transparent;
border: 2px solid #C0C0C0;
color: #fff;
cursor: pointer;
font-family: inherit;
padding: .5rem 1rem;
font-size: 1.5rem;
}
.time-btn:hover {
border: 2px solid #16D9E3;
color: #16D9E3;
}
.hide {
opacity: 0;
}
.primary {
color: #16D9E3;
}
.board {
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 500px;
height: 500px;
background: linear-gradient(118.38deg, #29323C -4.6%, #485563 200.44%);
box-shadow: -8px -8px 20px #2A333D, 10px 7px 20px #475462;
border-radius: 30px;
overflow: hidden;
}
.circle {
/* background: linear-gradient(90deg, #16D9E3 0%, #30C7EC 47%, #46AEF7 100%);*/
position: absolute;
border-radius: 50%;
cursor: pointer;
}