-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
122 lines (105 loc) · 1.86 KB
/
styles.css
File metadata and controls
122 lines (105 loc) · 1.86 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
@import url('https://fonts.googleapis.com/css2?family=Sniglet&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika&display=swap');
*{
font-family: sniglet;
}
.welcome{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: none;
}
.title{
margin: 50px;
font-size: 6em;
}
.createButton{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.createButton a{
width: 314px;
height: 90px;
border: 2px solid black;
font-family: signika;
border-radius: 30px;
margin: 5px;
text-decoration: none;
color: black;
font-size: 2.5em;
text-align: center;
line-height: 90px;
}
.createButton a:hover{
animation: float 0.3s ease-in-out forwards;
}
@keyframes float {
from {
transform: scale(1);
border: 2px solid black;
}
to {
transform: scale(0.9);
border: 5px solid black;
}
}
/* <---------------- Cut for join ---------------> */
.box{
border: 3px solid black;
border-radius: 33px;
position: absolute;
width: 70%;
height: 70%;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
padding-left: 2em;
padding-top: 20px;
font-size: 2em;
}
#typeBox{
position: absolute;
font-size: 1em;
border: 2px solid black;
bottom: 0;
left: 50%;
transform: translateX(-55%);
width: 80%;
margin-bottom: 2%;
height: 5%;
border-radius: 30px;
padding-left: 0.5cm ;
}
#submitButton{
position: absolute;
border: none;
font-size: 20px;
bottom: 0;
margin-bottom: 2%;
width: 10%;
right: 2.1%;
border-radius: 30px;
}
#submitButton:hover{
animation: float 0.3s ease-in-out forwards;
cursor: pointer;
}
.container{
display: flex ;
flex-direction: column;
margin: 0;
align-items: center;
justify-content: center;
height: 100vh;
font-size: 40px;
}
/* Temporary placeholder for time of text message */
#time{
font-size: 0.6em;
}
.box p{
margin: 0.4cm;
}