-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
87 lines (79 loc) · 1.19 KB
/
main.css
File metadata and controls
87 lines (79 loc) · 1.19 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
@import url('https://fonts.googleapis.com/css?family=Amatic+SC');
/* typography */
h1,h2,h3,h4,h5,h6 {
margin: 5px 0;
}
h1 {
font-size: 40px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 24px;
}
p {
font-size: 24px;
}
/* Base Styles */
*, *:before, *:after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: "Amatic SC", cursive;
background-color: #ccc;
line-height: 1.5;
}
#content-container {
margin: 0 auto;
max-width: 1140px;
height: 100%;
}
.flex {
display: flex;
}
.row {
flex-direction: row;
}
.column {
flex-direction: column;
}
.align-center {
-ms-align-items: center;
align-items: center;
}
.justify-center {
justify-content: center;
}
.center-content {
align-content: center;
}
/* Score Section */
#player, #computer {
margin: 10px;
padding: 5px 15px;
}
/* Options section */
button{
margin: 10px;
padding: 15px 15px;
background-color: #efefef;
cursor: pointer;
width: 120px;
text-align: center;
border-radius: 5px;
font-size: 30px;
font-family: inherit;
font-weight: bold;
}
button:active {
border: none;
}
button:focus {
outline: none;
}