-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (88 loc) · 1.94 KB
/
styles.css
File metadata and controls
103 lines (88 loc) · 1.94 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
font-family: system-ui;
background-color: #B6DB79;
}
h1 {
text-align:center;
color:#B585CF;
text-shadow: 2px 2px #000000;
}
p {
text-align:center;
color:#818181;
}
a.yellow {
color:#ffdd4d;
background-color:transparent;
text-decoration:none;
}
a.black {
color:#000000;
background-color:transparent;
text-decoration:none;
}
a.pink {
color:#B585CF;
background-color:transparent;
text-decoration:none;
}
a.grey {
color:#BFBFBF;
background-color:transparent;
text-decoration:none;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
border: 1px solid #818181;
}
.topnav {
background-color: #B585CF;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
text-shadow: 1px 1px #000000;
font-size: 24px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #0F85A6;
color: #BFBFBF;
}
/* Add an active class to highlight the current page */
.topnav a.active {
color: #0F85A6;
}
/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
display: none;
}
.main {
margin-left: 0px;
font-size: 28px;
padding: 0px 10px;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}