-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
112 lines (92 loc) · 1.8 KB
/
styles.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
@font-face {
font-family: Myfont;
src: url(fonts/BeaufortforLOL-Regular.ttf),
url(fonts/BeaufortforLOL-Bold.ttf),
url(fonts/BeaufortforLOL-BoldItalic.ttf),
url(fonts/BeaufortforLOL-Heavy.ttf),
url(fonts/BeaufortforLOL-HeavyItalic.ttf),
url(fonts/BeaufortforLOL-Italic.ttf),
url(fonts/BeaufortforLOL-Light.ttf),
url(fonts/BeaufortforLOL-LightItalic.ttf),
url(fonts/BeaufortforLOL-Medium.ttf),
url(fonts/BeaufortforLOL-MediumItalic.ttf);
}
* {
font-family: Myfont;
}
.primary_container {
display: flex;
width: 100%;
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1, h2, h3, label {
color: #c89b3c;
}
h2 {
margin-top: 75px;
}
.labels {
margin-top: 25px;
}
.labelPlayer {
margin-right: 300px;
}
.labelComputer {
margin-left: 150px;
}
.labels > * {
color: #c89b3c;
font-weight: bold;
}
.scores {
display: flex;
flex: auto;
}
.playerScore {
margin-right: 150px;
}
.computerScore {
margin-left: 150px;
}
.scores>* {
height: auto;
width: 100px;
border: 5px solid black;
text-align: center;
font-size: 70px;
}
.scores .winnerDisplay {
font-size: 20px;
font-weight: bold;
padding-top: 26px;
border: 0;
}
/* .buttons {
} */
.buttons>* {
flex-direction: row;
height: 80px;
width: 80px;
font-size: large;
font-weight: bolder;
color: #c89b3c;
text-align: center;
line-height: 180px;
}
#rock {
background-image: url(img/tft5_item_zzrotportalradiant.png);
margin-right: 20px;
}
#paper {
background-image: url(img/tft_item_morellonomicon.png);
}
#scissor {
background-image: url(img/tft_item_statikkshiv.png);
margin-left: 20px;
}
#reset {
margin-top: 20px;
}