-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (44 loc) · 709 Bytes
/
Copy pathstyle.css
File metadata and controls
52 lines (44 loc) · 709 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
47
48
49
50
51
52
* {
border: 1px solid gray;
}
header, h1 {
text-align: center;
}
section {
text-align: center;
border: 2px solid black;
margin: 2px;
}
.flex-container {
margin: 30px;
display: flex;
flex-flow: row nowrap;
justify-content: space-evenly;
align-items: center;
}
.flex-content {
display: inline-block;
width: 40%;
}
.flex-content h3 {
display: inline-block;
}
a {
display: inline-block;
border: 1px solid black;
width: 25%;
min-width: 115px;
line-height: 5;
text-align: center;
}
a:hover {
background-color: gray;
color: red;
text-decoration: underline;
font-size: 1.5rem;
}
a.clickedButton {
background-color: black;
color: white;
font-size: 1.5rem;
}