-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstyle.css
129 lines (129 loc) · 2.23 KB
/
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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
/* background: url(./assets/farouk-mechedal-iWmfPbKmxEQ-unsplash.jpg)
no-repeat center center/cover; */
background:url("bgweb.png")
}
.top{padding:50px;
}
.box {
border:1px solid;
border-radius:20px;
border-color:white;
padding:18px;
background-color:white;
text-align:center;
font-family: Arial, Helvetica, sans-serif;
font-weight:normal;
}
ul {
height: auto;
width: 600px;
border: 5px;
padding: 30px;
text-align:center;
position:absolute;
align-items:center;
justify-content:center;
left:50%;
top:50%;
transform:translate(-50%, -50%);
text-align:center;
}
li {
position: relative;
border-style: solid;
border-width:13px;
border-radius:50%;
padding: 5px;
background-color: white;
border-color: #88b2b9;
width:120px;
height:120px;
cursor: pointer;
outline: none;
display:inline-block;
align-items:center;
justify-content:center;
}
li#PAPER {
border-color:#d7b546;
text-align:center;
}
li#ROCK {
border-color:#e3242b;
text-align:center;
}
li#SCISSORS {
border-color:#2243b6;
text-align:center;
}
li:hover {background-color: #d4d4d3;}
i#paper {
font-size:60px;
position:relative;
margin: auto;
padding:8px;
}
i#rock {
font-size:60px;
position:relative;
margin: auto;
padding:10px 8px 8px 16px;
}
i#scissors {
font-size:60px;
position:relative;
margin: auto;
padding:11px 12px 8px 8px;
}
#space {
position: relative;
cursor: pointer;
outline: none;
display:inline-block;
align-items:center;
justify-content:center;
width:auto;
height:auto;
display:flex;
}
.bottom {
position:fixed;
bottom:90px;
left:50%;
transform: translate(-50%, -50%);
margin: 0 auto;
font-family: Arial, Helvetica, sans-serif;
display: inline-block;
}
.right {
position: absolute;
bottom: 2vh;
transform: translate(50%,-50%);
right: 50%;
display: flex;
flex-flow: row;
align-items: center;
justify-content: center;
gap: 7vh;
}
.refresh {
position: relative;
padding: 12px;
width:130px;
height:50px;
cursor: pointer;
outline: none;
border-style:solid;
border-radius:50px;
border-color:white;
color:white;
font-size:16px;
text-align:center;
vertical-align:middle;
}