forked from cs4241-20a/a4-creative-coding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (69 loc) · 1.35 KB
/
style.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
h1{
font-family: 'Sansita Swashed', cursive;
font-size: 50px;
text-align: center;
color: white;
}
body{
background-color: black;
color: white;
font-family: 'Dancing Script', cursive;
}
#target{
display: block;
margin-left: auto;
margin-right: auto;
}
h2{
text-align:right;
padding: 5%;
}
#radiobuttonvalues{
font-size: 25px;
align-items: center;
text-align: center;
color: white;
}
.help-tip{
position: absolute;
top: 18px;
right: 18px;
text-align: center;
background-color: #BCDBEA;
border-radius: 50%;
width: 24px;
height: 24px;
font-size: 18px;
cursor: default;
}
.help-tip:before{
content:'?';
color:#fff;
}
.help-tip:hover p{
display:block;
transform-origin: 100% 0%;
-webkit-animation: fadeIn 0.3s ease-in-out;
animation: fadeIn 0.3s ease-in-out;
}
.help-tip p{ /* The tooltip */
display: none;
text-align: left;
background-color: #1E2021;
font-family: 'Sansita Swashed', cursive;
padding: 20px;
width: 300px;
position: absolute;
border-radius: 3px;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
right: -4px;
color: #FFF;
font-size: 17px;
line-height: 1.4;
}
/* CSS animation */
@-webkit-keyframes fadeIn {
@keyframes fadeIn {
0% { opacity:0; }
100% { opacity:100%; }
}