-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (111 loc) · 2.65 KB
/
style.css
File metadata and controls
127 lines (111 loc) · 2.65 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
* {
box-sizing: border-box;
}
body {
font-family: 'Gluten', cursive;
color: white;
margin:0;
padding:0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
background-image: url("image/bg.jpg");
background-size: cover;
}
.container {
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
border-radius: 50%;
}
#spinner {
transition: 5s;
}
#name-submit {
font-family: 'Gluten', cursive;
background-color: transparent;
position: absolute;
top: 20%;
left: 20%;
font-weight: bold;
font-size:30px;
color: white;
width: 200px;
height: 200px;
border-radius: 50%;
cursor: pointer;
outline: none;
border: none;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#name-submit:hover {
transition: 0.5s;
background-color: #FEC8D8;
color: #957DAD;
}
.user-input-tex-area {
border: none;
text-align: center;
background-color: #957DAD;
font-family: 'Gluten', cursive;
position: absolute;
top:2rem;
color: #FEC8D8;
border-radius: 10px;
padding: 20px;
font-size: 1.5rem;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #FEC8D8;
}
.user-input-tex-area:focus {
border: none;
outline: none;
box-shadow: none;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.arrow {
position: absolute;
top:8rem;
color: white;
font-size: 6rem;
z-index: 20;
}
.add-shadow {
filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.35));
}
#start {
font-family: 'Gluten', cursive;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
background-color: white;
font-weight: bold;
font-size:20px;
color: #957DAD;
width: 80px;
height: 80px;
border-radius: 50%;
cursor: pointer;
outline: none;
border: none;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#start:hover {
background-color: #957DAD;
color: white;
transition: 0.5s;
}
#start:active {
box-shadow: none;
transform: translate(-50%, -30%);
}
.manual {
position: absolute;
top: 80%;
left: 8%;
font-size: large;
}