forked from erdincakgun/RockPaperScissors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (48 loc) · 908 Bytes
/
style.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
body {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: rgb(249, 228, 255);
font-family: "Silkscreen", sans-serif;
}
.container {
display: flex;
height: 75vh;
align-items: center;
}
.option{
font-size: 256px;
border-radius: 50%;
text-align: center;
}
.left, .right{
display: flex;
width: 50%;
justify-content: center;
}
.bottom button{
border-color: transparent;
font-family: "Silkscreen";
width: 100%;
max-width: 256px;
box-shadow: 0 3px 10px #A020F0;
height: 200px;
width: 200px;
border: 0;
border-radius: 50%;
background-color: #a020f0;
color: #fff;
font-size: 48px;
text-align: center;
}
.bottom button:hover{
box-shadow: none;
width: 250px;
height: 250px;
}
.bottom {
display: flex;
justify-content: center;
align-items: center;
height: 15vh;
}