-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmediaquery.css
62 lines (51 loc) · 1.23 KB
/
mediaquery.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
@charset "UTF-8";
* {
margin: 0px;
padding: 0px;
overflow: hidden;
}
/* demais telas */
@media screen and (min-width:768px) {
html, body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: Arial, Helvetica, sans-serif;
background-color: blanchedalmond;
border: 2px solid black;
width: 100vw;
height: 100vh;
}
#sectionContainer {
width: 400px;
height: 600px;
border-radius: 40px;
background-color: brown;
box-shadow: 1px 1px 6px 3px rgb(82, 42, 42);
display:flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
h1 {
font-size: 3em;
}
#countLabel {
font-size: 10em;
}
.btn {
border-radius: 10px;
background-color: rgb(0, 0, 0);
color: white;
box-shadow: 0px 2px 4px 1px black;
margin: 5px;
padding: 10px;
font-size: 20px;
}
.btn:hover {
cursor: pointer;
background-color: rgb(61, 61, 61);
transition:background-color 0.2s;
}
}