-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
124 lines (118 loc) · 2.39 KB
/
index.css
File metadata and controls
124 lines (118 loc) · 2.39 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
116
117
118
119
120
121
122
123
124
@import url('https://fonts.googleapis.com/css2?family=Passion+One&display=swap');
* {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
html {
font-size: 62.5%;
font-family: 'Passion One', cursive;
}
body {
width: 100%;
height: 100%;
background-color: white;
}
h1 {
text-align: center;
margin-top: 50px;
font-size: 5.0em;
color: rgb(24, 24, 24);
}
.botoes {
display: flex;
justify-content: center;
margin-top: 200px;
}
#bentrar {
width: 200px;
height: 80px;
margin-right: 100px;
font-size: 2.5em;
border-radius: 5px;
color: white;
background-color: rgb(255, 67, 67);
}
#bentrar:hover {
background-color: rgb(255, 25, 25);
}
#bcadastro {
width: 200px;
height: 80px;
font-size: 2.5em;
border-radius: 5px;
color: white;
background-color: rgb(255, 67, 67);
}
#bcadastro:hover {
background-color: rgb(255, 25, 25);
}
footer {
position: relative;
clear: both;
margin-top: 200px;
width: 100%;
height: 100px;
background-color: rgb(24, 24, 24);
}
footer h1 {
margin: 0;
font-size: 3.0em;
color: white;
padding-top: 40px;
}
@media only screen and (max-width: 600px) {
h1 {
font-size: 4.0em;
}
.botoes {
display: block;
margin: 0 auto;
width: 300px;
margin-top: 100px;
}
#bentrar {
margin: 0 0 50px 0;
width: 300px;
}
#bcadastro {
margin: 0;
width: 300px;
}
}
@media only screen and (min-width: 600px) and (max-width: 1200px) and (orientation: portrait) {
html {
font-size: 120%;
}
h1 {
font-size: 3.5em;
}
.botoes {
display: block;
margin: 0 auto;
width: 500px;
margin-top: 100px;
}
#bentrar {
margin: 0 0 50px 0;
height: 100px;
width: 500px;
font-size: 2.0em;
}
#bcadastro {
margin: 0;
height: 100px;
width: 500px;
font-size: 2.0em;
}
footer {
margin-top: 400px;
height: 180px
}
footer h1 {
padding-top: 70px;
}
}