-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (65 loc) · 1.8 KB
/
style.css
File metadata and controls
73 lines (65 loc) · 1.8 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
* {
background-color: #490410;
margin: 4px;
padding-top: 6px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding-top: 10px;
/* padding-bottom: 10px; */
}
.h11 {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding-top: 10px;
}
.box {
height: 111px;
width: 251px;
border: 2px solid rgb(255, 255, 255);
margin: 10px;
display: flex;
justify-content: center;
align-items: center;
color: rgb(0, 0, 0);
text-shadow: 10px;
font-size: 30px;
color: rgb(255, 255, 255);
font-weight: bold;
}
h1 {
font-size: 80px;
text-align: center;
border-radius: 10px;
color: white;
text-shadow: 10px;
border: 2px solid rgb(255, 255, 255);
padding-left: 15px;
padding-right: 15px;
}
p {
font-size: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-align: center;
border-radius: 10px;
color: white;
text-shadow: 10px;
/* border: 2px solid rgb(255, 255, 255); */
}
@media only screen and (max-width: 600px) {
* {
padding: 10px 10px 10px 10px;
}
h1 {
font-size: 35px;
}
p {
padding: 0px 0px 10px 0px;
font-size: 25px;
}
}