forked from rocketacademy/timer-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (84 loc) · 1.5 KB
/
styles.css
File metadata and controls
95 lines (84 loc) · 1.5 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
84
85
86
87
88
89
90
91
92
93
94
95
body {
background: white;
}
#header {
display: flex;
justify-content: center;
}
#lap-data {
background-color: white;
height: 300px;
width: 100px;
margin-bottom: 10px;
margin-right: 10px;
float: left;
color: black;
border-radius: 10px;
}
.timer {
color: black;
height: 100px;
width: 300px;
margin-bottom: 10px;
margin-left: 20%;
float: none;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
}
.button-container {
height: 190px;
width: 300px;
margin-bottom: 10px;
margin-right: 10px;
margin-left: 26.5%;
align-content: center;
border-radius: 10px;
}
.container {
width: 430px;
height: 275px;
background: linear-gradient(to bottom, rgb(73, 73, 207), white);
border-radius: 10px;
margin: auto;
padding: 10px;
}
.buttons {
border-radius: 20%;
height: 50px;
width: 70px;
background-color: white;
color: black;
border: 0px;
font-weight: bold;
}
.buttons:hover {
background-color: rgb(198, 198, 255);
color: white;
}
.timer {
display: flex;
align-content: center;
}
li {
list-style-type: none;
margin-left: 10px;
}
.button-roll1 {
margin-left: 20%;
width: 60%;
height: 50%;
display: flex;
justify-content: space-between;
align-items: center;
}
.button-roll2 {
margin-left: 20%;
width: 60%;
height: 50%;
display: flex;
align-items: center;
justify-content: space-between;
}