-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (56 loc) · 1.11 KB
/
style.css
File metadata and controls
63 lines (56 loc) · 1.11 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
*{
margin: 0;
padding: 0;
}
body{
background-color: rgb(5,57,107);
}
nav{
background-color: rgb(92,219,148);
width: 40%;
height: 80px;
margin: auto;
margin-bottom: 40px;
display: flex;
justify-content: center;
align-items: center;
border: 2px solid black;
border-radius: 5px;
font-size: 25px;
font-family:sans-serif;
}
.start{
border: 2px solid rgb(201, 12, 12);
padding: 10px;
margin: 5px;
border-radius: 20px;
height: 94vh;
/* display: flex; */
/* flex-direction: column; */
}
.button{
background-color: rgb(137, 98, 228);
width: 90%;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
height: 40vh;
border-radius: 5px;
}
.startButton{
background-color: rgb(56, 56, 56);
width: 590px;
height: 80px;
cursor: pointer;
border: 2px solid rgb(0, 0, 0);
/* color: red; */
color: white;
border-radius: 10px;
font-size: 20px;
}
.startButton:hover{
background-color: rgb(5,57,107);
box-shadow: 2px 2px 2px rgb(0, 0, 0);
/* color: white; */
}