-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
132 lines (109 loc) · 1.9 KB
/
index.css
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
125
126
127
128
129
130
131
132
.header{
background-color:powderblue;
font-size:50px;
height:70px;
margin-bottom:10;
font-family: "Times New Roman";
}
.btn{
width:20%;
height:40;
margin-bottom:20;
font-family: "Roboto", sans-serif;
text-transform: uppercase;
outline: 0;
background: #3f3284;
border: 0;
color: #FFFFFF;
font-size: 14px;
-webkit-transition: all 0.3 ease;
transition: all 0.3 ease;
cursor: pointer;
font-family: "Times New Roman";
}
.btn:hover,.btn:active,.btn:focus {
background: #6f60dd;
}
.main{
text-align:center;
font-family: "Times New Roman";
}
.left{
width:29%;
float:left;
border-left:2px solid;
border-right:2px solid;
border-top:2px solid;
height:100%;
padding-top:20;
font-family: "Times New Roman";
}
.right{
width:70%;
float:left;
height:100%;
border-right:2px solid;
border-top:2px solid;
font-family: "Times New Roman";
}
.row:after{
content: "";
display: table;
clear: both;
}
ol.even {
position: relative;
left: 5.45455rem;
}
ol.odd {
position: relative;
margin-bottom: -4.5%;
}
.hex {
position: relative;
margin: 1em auto;
width: 6rem;
height: 10.2rem;
background: #3f3284;
transform: rotate(-90deg);
display: inline-block;
list-style-type: none;
margin-right: 4.61538rem;
transition: all 150ms ease-in-out;
z-index: 2;
float: left;
}
.hex:before, .hex:after {
position: absolute;
width: inherit;
height: inherit;
border-radius: inherit;
background: inherit;
content: '';
z-index: -1;
}
.hex:before {
transform: rotate(60deg);
}
.hex:after {
transform: rotate(-60deg);
}
.hex:hover {
background: #6f60dd;
cursor: pointer;
}
.hex .hex-content {
position: absolute;
top: 50%;
left: 50%;
font-family: "Times New Roman";
transform: translate(-50%, -50%) rotate(90deg);
color: white;
}
.box {
position: absolute;
top: 30%;
left: 45%;
border: 10px solid transparent;
font-family: "Times New Roman";
}