DHEIVER commited on
Commit
31fd3eb
·
verified ·
1 Parent(s): 15ea651

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +14 -28
style.css CHANGED
@@ -1,38 +1,24 @@
1
- body {
2
- font-family: Arial, sans-serif;
3
- background-color: #000;
4
- color: #fff;
5
  display: flex;
6
  justify-content: center;
7
  align-items: center;
8
  height: 100vh;
9
- margin: 0;
10
  }
11
 
12
- .jarvis {
13
- text-align: center;
 
 
 
 
14
  }
15
 
16
- .jarvis h1 {
17
- font-size: 2em;
18
- margin-bottom: 20px;
 
 
19
  }
20
 
21
- .jarvis p {
22
- font-size: 1.2em;
23
- }
24
-
25
- .jarvis button {
26
- margin-top: 20px;
27
- padding: 10px 20px;
28
- font-size: 1em;
29
- background-color: #007BFF;
30
- color: #fff;
31
- border: none;
32
- border-radius: 5px;
33
- cursor: pointer;
34
- }
35
-
36
- .jarvis button:hover {
37
- background-color: #0056b3;
38
- }
 
1
+ .container {
 
 
 
2
  display: flex;
3
  justify-content: center;
4
  align-items: center;
5
  height: 100vh;
6
+ background-color: #222;
7
  }
8
 
9
+ .circle {
10
+ width: 300px;
11
+ height: 300px;
12
+ border-radius: 50%;
13
+ border: 10px solid #00ffff;
14
+ position: relative;
15
  }
16
 
17
+ .hexagon {
18
+ width: 50px;
19
+ height: 28.87px;
20
+ background-color: #333;
21
+ position: absolute;
22
  }
23
 
24
+ /* ... outros estilos para os hexágonos ... */