-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (72 loc) · 1.13 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
html {
font-family: 'Gill Sans', sans-serif;
font-style: normal;
text-align: center;
color: #353535;
}
h1 {
font-size: 2.75rem;
margin: 75px auto;
}
h2 {
font-size: 2rem;
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.dice {flex-flow: column wrap;}
}
#header {
text-align: left;
margin-left: 5%;
}
#headerBG, #disclaimer {
background-color: #6a6a6a;
color: #eeeeee;
padding: 1%;
border-radius: 10px;
}
.red{
color: #EC4646;
}
.blue{
color: #0F4392;
}
.dice, #instructions {
display:flex;
flex-direction: row;
justify-content: center;
}
.dice-img {
max-width: 225px;
}
.vs{
margin: auto 100px;
}
#instructions {
flex-wrap: wrap;
text-align: left;
}
.steps {
border-style: solid;
border-radius: 10px;
border-color: #6a6a6a;
margin: 5%;
padding: 1% 5%;
}
.steps>h3 {
text-decoration: underline;
}
#instructions > div {
background-color: white;
filter: drop-shadow(2px 1px 5px #44444475);
}
#disclaimer > p{
margin: 2% 5%;
}
a > p {
color: white;
text-decoration: underline;
}
a > p:hover{
color:red;
}