-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathintroduction.css
83 lines (73 loc) · 1.54 KB
/
introduction.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
#bottom-area
{
text-align: center;
position: relative;
}
.img
{
background-image: url('images/abstract.png');
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
img{
width: 50%;
height: 400px;
background-repeat: no-repeat;
background-size: contain;
}
body, html{
height: 100%;
margin: 0;
}
h2, H1
{
font:bold;
font-weight: bolder;
background-color: orange;
}
.button
{
background-color: orange; /* Green */
border: none;
text-decoration: solid;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#minibox {
border-style: double;
border-width: medium;
BORDER-COLOR: GREEN;
border-radius: 5px;
text-align: center;
BACKGROUND-COLOR: lightblue;
}
ul.topnav {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(118, 108, 160);
}
ul.topnav li {float: left;}
ul.topnav li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
ul.topnav li a:hover:not(.active) {background-color: #111;}
ul.topnav li a.active {background-color: rgb(118, 108, 160)}
ul.topnav li.right {float: right;}
@media screen and (max-width: 600px) {
ul.topnav li.right,
ul.topnav li {float: none;}
}