-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
107 lines (91 loc) · 1.73 KB
/
main.css
File metadata and controls
107 lines (91 loc) · 1.73 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
* {
color: var(--fontColor);
font-family: helvetica;
box-sizing: border-box;
padding: 0;
margin: 0;
border: 0;
box-sizing: border-box;
}
html {
position: relative;
min-height: 100%;
}
:root {
min-height: 100%;
display: flex;
flex-direction: column;
position: absolute;
width: 100%;
--yellow: #BBFF00;
--white: #ffffff;
--black: #000000;
}
body {
min-height: 100%;
position: absolute;
width: 100%;
background: var(--bg);
font-family: monospace;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
transition: background 0.2 linear;
--bg: var(--yellow);
--fontColor: var(--black);
--btnBg: var(--black);
--btnFontColor: var(--white);
}
.button {
background: var(--bg);
font-family: monospace;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-self: center;
width: 100%;
height: 80px;
padding: 5px;
}
.dark-theme {
--bg: var(--black);
--fontColor: var(--green);
--btnBg: var(--yellow);
--btnFontColor: var(--black);
}
.btn {
background: none;
cursor: pointer;
top: 20px;
height: 50px;
width: 50px;
border-radius: 5px;
}
.btn:focus {
outline-style: none;
}
.imagem {
display: flex;
flex-direction: column;
justify-content: center;
width: 65%;
height: 65%;
margin-top: 50px;
}
.icone {
height: 150px;
width: 150px;
transform: rotate(0deg);
}
.frame {
border-radius: 10px;
border: solid black 20px;
min-height: 100%;
min-width: 60%;
display: flex;
flex-direction: column;
align-items: center;
gap: 80px;
}