-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (91 loc) · 1.69 KB
/
styles.css
File metadata and controls
105 lines (91 loc) · 1.69 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
:root {
--background-primary: #2e2d49;
--background-secondary: #1f1e3d;
font-size: 20px;
}
* {
padding: 0;
margin: 0;
}
body {
background: var(--background-primary);
color: #fff;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.wrapper {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
max-width: 1110px;
gap: 3rem;
overflow: hidden;
max-width: 100%;
margin: auto;
}
h1 {
user-select: none;
}
.container {
background: var(--background-secondary);
height: 450px;
width: 450px;
border-radius: 50%;
box-shadow: 0px 0px 10px #fff;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 1em;
user-select: none;
}
.buttonContainer {
font-size: 1rem;
}
.texto {
font-weight: lighter;
}
.buttonContainer button {
display: inline-block;
height: 30px;
width: 120px;
border: none;
outline: none;
border-radius: 10px;
transition: .3s all;
margin: 0 8px;
color: #fff;
font-size: .6rem;
font-weight: 500;
background: rgb(65, 122, 126);
cursor: pointer;
}
.buttonContainer button:hover {
background: rgba(65, 122, 126, .7);
}
@media (max-width: 1032px) {
.wrapper {
flex-direction: column;
}
}
@media (max-width: 473px) {
h1 {
font-size: 1rem;
}
.container {
width: 300px;
height: 300px;
font-size: .7rem;
}
.buttonContainer button {
width: 50px;
overflow: hidden;
}
}
@media (max-width: 315px) {
.container {
width: 230px;
height: 230px;
font-size: .6rem;
}
}