-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault2.css
More file actions
130 lines (107 loc) · 1.88 KB
/
default2.css
File metadata and controls
130 lines (107 loc) · 1.88 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
body
{
background: #133337;
}
h2,
h1
{
font-size: 30pt;
margin-top: 0;
margin-bottom: 0;
text-align: center;
color: darkOliveGreen;
background: rgba(250, 250, 250, .7);
}
.span1
{
margin-top: 0;
margin-bottom: 0;
padding: 5px 20px;
text-align: center;
font-size: 18pt;
color: darkOliveGreen;
border-radius: 120px;
background: rgba(150, 200, 200, .7);
}
.span2
{
margin-top: 0;
margin-bottom: 0;
/* margin-left: 50px; */
padding: 15px 25px;
text-align: center;
font-size: 20pt;
color: white;
border-radius: 50%;
background: grey;
}
input
{
font-size: 12pt;
padding: 5px;
text-align: center;
border-radius: 120px;
}
button
{
font-size: 10pt;
font-style: italic;
padding: 15px 32px;
cursor: pointer;
color: white;
border: 2px solid rgb(150,200,200);
border-radius: 35px;
background-color: rgba(85,107,47,0.6);
}
button:hover {
background-color: rgba(85,107,47,1);
}
.container
{
display: grid;
/* max-width: 1100px; */
/* background-color: #2196F3; */
padding: 10px;
grid-column-gap: 0;
grid-template-columns: auto auto;
align-items: center;
text-align: center;
position: relative;
}
.item
{
font-size: 30px;
z-index: 1;
padding: 20px;
text-align: center;
/* border: 1px solid rgba(0, 0, 0, .8); */
position: relative;
}
img{
height: 150px;
text-align: center;
position: relative;
border:0;
}
.hoverElem {
position: relative;
display: inline-block;
}
.hoverElem .hoverText {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
margin-left: -60px;
}
.hoverElem:hover .hoverText {
visibility: visible;
}