-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrps.css
More file actions
46 lines (42 loc) · 806 Bytes
/
rps.css
File metadata and controls
46 lines (42 loc) · 806 Bytes
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
*{box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background-color: rgb(21, 169, 206);}
#container{
display: flex;
justify-content: center;
gap: 10%;
align-items: center;
background-color: rgb(230, 223, 199);
padding: 2%;
margin: auto 2%;
}
h1, header, #p {
background-color: rgb(230, 223, 199);
/* margin: 2%; */
}
#p{
padding-bottom: 2%;
}
header{
margin: 2%;
}
#container3{
display: flex;
justify-content: center;
background-color: rgb(230, 223, 199);
gap: 20%;
}
button{
font-size: large;
border-radius: 5px;
background-color: rgb(68, 147, 167);
color: #ffffff;
padding: 1% 5%;
border-style: none;
}
footer{
padding: 2%;
background-color: cornsilk;
margin: 2%;
}