-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathstyle.css
107 lines (88 loc) · 1.4 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
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
Folha de estilo - Simulador de operadores lógicos
@author Professor José de Assis
https://joseassis.com.br/
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
body {
font-family: "Open Sans", sans-serif;
font-size: 1em;
}
img {
max-width: 100%;
}
header h1 {
color: #cc470d;
text-align: center;
}
/* Menu */
nav {
width: 100%;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
background-color: #e15a1f;
overflow: hidden;
}
nav ul li {
float: left;
}
nav ul li a {
text-decoration: none;
color: #fff;
padding: 10px 15px;
display: block;
}
nav ul li a:hover {
background-color: #cc470d;
transition: all 0.4s;
}
/* Destacar link */
#operators a#op,
#opand a#p1,
#opor a#p2,
#opnot a#p3 {
cursor: default;
background-color: #cc470d;
}
.Content {
margin: 50px 0px;
text-align: center;
}
footer {
width: 100%;
background-color: #cc470d;
color: #fff;
padding: 5px 0px;
font-size: 0.85em;
text-align: center;
}
footer a {
text-decoration: none;
color: #fff;
}
#sw1 {
float: left;
}
#sw2 {
float: right;
}
#lamp,
#sw1,
#sw2 {
cursor: pointer;
}
@media (min-width: 576px) {
header h1 {
text-align: left;
}
.Content {
text-align: left;
}
#sw1,
#sw2 {
float: none;
}
}