1
+ body {
2
+ color : rgb (30 , 30 , 30 );
3
+ background : rgb (250 , 247 , 204 );
4
+ }
5
+
6
+ .cityTriangle {
7
+ width : 0 ;
8
+ height : 0 ;
9
+ border-left : 250px solid transparent;
10
+ border-right : 1050px solid transparent;
11
+ border-bottom : 500px solid rgb (255 , 165 , 30 );
12
+ margin : 350px -600px ;
13
+ }
14
+
15
+ .cityRectWide {
16
+ background : rgb (255 , 82 , 0 );
17
+ width : 800px ;
18
+ height : 120px ;
19
+ border-radius : 20px ;
20
+ margin : -80% 70% ;
21
+ }
22
+
23
+ h1 {
24
+ position : fixed;
25
+ font-family : Arial, Helvetica, sans-serif;
26
+
27
+ }
28
+
29
+ .cityCircleReturn {
30
+ background : rgb (255 , 82 , 0 );
31
+ width : 80px ;
32
+ height : 80px ;
33
+ border-radius : 50% ;
34
+ display : grid;
35
+ margin : 0 auto;
36
+ }
37
+
38
+ .cityCircle {
39
+ background : rgb (0 , 173 , 56 );
40
+ width : 700px ;
41
+ height : 700px ;
42
+ border-radius : 50% ;
43
+ display : grid;
44
+ margin : 0px ;
45
+ }
46
+
47
+ p {
48
+ height : 300px ;
49
+ width : 300px ;
50
+ position : relative;
51
+ animation : effect 8s linear infinite;
52
+ }
53
+
54
+ @keyframes effect {
55
+ 0% {
56
+ transform : rotate (0deg );
57
+ }
58
+ 100% {
59
+ transform : rotate (360deg );
60
+ }
61
+ }
62
+
63
+ span {
64
+ position : absolute;
65
+ left : 50% ;
66
+ transform-origin : 0px 150px ;
67
+ transform-style : flat;
68
+ font-family : "Gill Sans" , "Gill Sans MT" , Calibri, "Trebuchet MS" , sans-serif;
69
+ text-transform : uppercase;
70
+ font-weight : 900 ;
71
+ color : # fff ;
72
+ }/*# sourceMappingURL=index.css.map */
73
+
74
+ .cityRectCarousel {
75
+ background : rgb (35 , 58 , 108 );
76
+ width : 650px ;
77
+ height : 450px ;
78
+ border-radius : 20px ;
79
+ margin : 0 ;
80
+ }
81
+
82
+ .cityRectTall {
83
+ background : rgb (255 , 165 , 30 );
84
+ width : 400px ;
85
+ height : 750px ;
86
+ border-radius : 20px ;
87
+ margin : -80% 1100px ;
88
+ }
89
+
90
+ .cityHexagon {
91
+ height : 200px ;
92
+ width : 120px ;
93
+ background : rgb (0 , 173 , 56 );
94
+ position : relative;
95
+ left : 50px ;
96
+ box-sizing : border-box;
97
+ }
98
+ .cityHexagon ::before , .cityHexagon ::after {
99
+ content : "" ;
100
+ position : absolute;
101
+ height : 0 ;
102
+ width : 0 ;
103
+ top : 0 ;
104
+ /* half height */
105
+ border-top : 100px solid transparent;
106
+ border-bottom : 100px solid transparent;
107
+ }
108
+ .cityHexagon ::before {
109
+ left : -50px ;
110
+ border-right : 50px solid rgb (0 , 173 , 56 );
111
+ }
112
+ .cityHexagon ::after {
113
+ right : -50px ;
114
+ border-left : 50px solid rgb (0 , 173 , 56 );
115
+ }
0 commit comments