-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (83 loc) · 1.48 KB
/
Copy pathstyle.css
File metadata and controls
95 lines (83 loc) · 1.48 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 {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
background-color:lightslategray
}
h1 {
font-size: 50px;
text-align: center;
}
h2, h3, .score{
font-size: 30px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.score {
display: flex;
flex-direction: column;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 70px;
width: 70%;
}
.container > button {
width: 40%;
margin: 5px;
height: 200px;
border-radius: 15px;
font-size: 20px;
background-color: azure;
font-size: 40px;
font-family:Georgia, 'Times New Roman', Times, serif
}
button:hover {
background-color: red;
}
.btn-container{
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.btn{
background-color: brown;
opacity: 80%;
border-radius: 50px;
width: 150px;
height: 150px;
text-align: center;
font-size: 90px;
transition: 0.5s ease;
margin: 5px;
padding: 30px;
}
.btn:hover {
transform: scale(1.1);
opacity: 10;
}
ul{
font-size: 25px;
width: 60%;
}
.container > .home {
width: 65%;
margin-top: 50px;
height: 100px;
border-radius: 15px;
font-size: 20px;
background-color: azure;
font-size: 40px;
font-family:Georgia, 'Times New Roman', Times, serif
}
.home:hover {
background-color: red;
}
span {
display: flex;
align-items: center;
}