-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (106 loc) · 2 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
background-image: url('assets/bg.png');
font-family: 'Roboto', sans-serif;;
color: #1D1D1B;
}
#warning {
display: none;
}
.window {
max-width: 80%;
border-radius: 10px;
margin: auto;
margin-top: 5%;
background-color: #7D88EB;
box-shadow: 10px 10px #3E4584;
}
.header {
border-bottom: 3px solid #3E4584;
padding-top: 15px;
padding-bottom: 15px ;
margin-bottom: 20px;
text-align: left;
padding-left: 30px;
}
.dot {
height: 15px;
width: 15px;
border: 3px solid #3E4584;
border-radius: 50%;
display: inline-block;
margin-right: 5px;
}
.signsBox {
margin-top: 7px;
padding-left: 10%;
padding-right: 10%;
}
#toggle {
color: #3E4584;
}
#signs {
margin-top: 1%;
cursor: pointer;
}
.content {
padding: 30px;
display: flex;
max-width: 100%;
}
#defaultCanvas0 {
border-radius: 10px;
border: 3px solid #3E4584;
box-shadow: none !important;
padding: 0;
}
#text {
text-align: center;
padding-left: 7%;
padding-right: 7%;
padding-top: 3%;
font-size: 13px;
}
.description {
margin-bottom: 20px;
padding: 10%;
text-align: left;
color: #494946
}
.vid {
display: none;
position: absolute;
right: 30%;
top: 55%;
}
.winPop {
border: 3px solid #3E4584;
border-radius: 5px;
}
#oi, #duvida, #entendi {
background: #919CFC;
color: aliceblue;
border-radius: 5px;
padding: 5px;
}
#oi:hover + #sinalOi, #duvida:hover + #sinalDuvida, #entendi:hover + #sinalEntendi {
display: block;
}
#footer {
margin-top: 10% }
.label {
color:#919CFC;
}
@media only screen and (max-width: 1200px) {
.window {
display: none;
}
#warning {
display: block;
max-width: 80%;
border-radius: 10px;
margin: auto;
margin-top: 5%;
background-color: #7D88EB;
box-shadow: 10px 10px #3E4584;
}
}