-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathexercicioModulo4.css
More file actions
115 lines (98 loc) · 1.76 KB
/
Copy pathexercicioModulo4.css
File metadata and controls
115 lines (98 loc) · 1.76 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
104
105
106
107
108
109
110
111
112
113
114
115
html, body, div, ul, li, a, button {
border: 0;
padding: 0;
margin: 0;
}
html {
font-family:Arial, Helvetica, sans-serif;
font-size: 16px;
}
.container {
width: 90vw;
margin: 5vh auto;
background-color: #f5f5f5;
padding: 10px 0;
}
.container input {
padding: 10px;
font-size: 1.2rem;
text-align: center;
border: 1px solid grey;
border-radius: 8px;
width: 230px;
margin: 0 auto;
}
.container input:focus {
border: 1px solid cornflowerblue;
outline: 0;
}
.container button {
background-color: cornflowerblue;
color: #fff;
padding: 10px;
font-size: 1.2rem;
border-radius: 8px;
width: 200px;
margin: 10px auto 0;
outline: 0;
}
.container button:hover {
filter: brightness(90%);
transition: 0.3s;
}
.flex {
display: flex;
flex-direction: column;
}
.list {
margin-top: 10px;
padding: 20px 20px 10px 20px;
min-height: 70vh;
}
.list li {
margin: 0 10px 10px 0;
list-style: none;
width: 80vw;
}
.list li a {
text-decoration: none;
font-size: 1.4rem;
background-color: cornflowerblue;
color: #fff;
padding: 10px 0;
display: block;
text-align: center;
border-radius: 8px;
border: 1px solid cornflowerblue;
}
.list li a:hover {
background-color: #fff;
color: cornflowerblue;
transition: 0.3s;
}
.list li a:active {
background-color: #fff;
color: cornflowerblue;
}
@media (min-width: 600px) {
.list {
flex-direction: row;
flex-wrap: wrap;
}
.list li {
width: 40vw;
}
}
@media (min-width: 801px) {
.list li {
width: 40vw;
}
}
@media (min-width: 1024px) {
.container {
width: 80vw;
}
.list li {
width: 25vw;
}
}