-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUp.css
125 lines (115 loc) · 2.24 KB
/
signUp.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
body{
margin: 0;
padding: 0;
background-color: #fefefe;
}
h1{
position: relative;
z-index: 2;
/* top: 50px; */
display: flex;
justify-content: center;
align-items: center;
font-family: 'Dancing Script', cursive;
font-size: 90px;
height: 50px;
text-shadow: 5px 5px #FBF0D4;
}
h4{
display: flex;
justify-content: center;
font-family: 'Dancing Script', cursive;
font-size: 25px;
}
a{
display: flex;
text-decoration: none;
font-size: 18px;
font-style: italic;
align-content: center;
align-items: center;
justify-content: center;
border: 1px solid #cba690;
}
a:visited{
color: black
}
#signup-HERO{
display: flex;
justify-content: space-around;
width: 100vw;
height: 60vh;
align-items: center;
align-content: center;
}
.time-signup{
text-align: center;
}
.signup-logo{
max-width: 600px;
}
#signup-card{
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-content: center;
align-items: center;
width: 50%;
height: 100%;
border: 5px solid #FBF0D4;
margin-top: 100px;
border-radius: 25px;
overflow: auto;
}
#signup-card form{
display: flex;
flex-direction: column;
}
#signup-card form input{
padding: 15px;
margin: 15px;
}
.radio-buttons{
text-align: center;
}
.tooltip {
display: inline-flex;
justify-content: center;
font-style: italic;
border-bottom: 1px dotted #FBF0D4;
}
.tooltip-text {
visibility: hidden;
width: 400px;
background-color: #FBF0D4;
color: black;
text-align: center;
border-radius: 25px;
padding: 5px;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltip-text {
visibility: visible;
console.log('hovered')
}
.signup-submit{
font-family: 'Dancing Script', cursive;
border: 2px solid #C6B79B;
background-color: white;
padding: 5px;
margin: 2px;
border-radius: 25px;
text-decoration: none;
/* font-size: 1.3rem; */
color: black;
font-size: 17px;
}
.signup-submit:hover{
cursor: pointer;
background-color: #FBEFD4;
transition: .3s;
border: 2px solid #FBF0D4;
}