-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (99 loc) · 1.83 KB
/
style.css
File metadata and controls
106 lines (99 loc) · 1.83 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
.clock{
display: flex;
width: 60%;
margin: auto;
justify-content: space-around;
}
body{
display: grid;
height: 100vh;
align-items: center;
}
p{
border: 2px solid red;
padding: 1em;
border-radius: 10px;;
}
.go-to-another{
background: rgb(43, 121, 43);
width: 50%;
padding: 1em;
margin: auto;
display: flex;
justify-content: center;
border-radius: 10px;
text-decoration: none;
color: white;
font-family: 'Times New Roman', Times, serif;
font-weight: 700;
}
form{
display: flex;
flex-direction: column;
align-items: center;
row-gap: 0.5em;
padding: 1em;
border-radius: 10px;;
border: 2px solid green;
margin-bottom: 1em;
}
.gen-input{
width: 60%;
min-height: 30px
}
.buttons{
display: flex;
justify-content: space-between;
gap: 5em;
}
.view-action, .view-action-2{
padding: 0.5em;
border-radius: 5px;
display: none;
opacity: 0;
background: rgb(114, 207, 114);
color: white;
animation-timing-function: linear;
transition: opacity 0.1s;
}
.view-action-2{
background: rgba(237, 59, 59, 0.797)
}
iframe{
margin: auto;
}
.profile{
border: 1px solid green;
border-radius: 10px;
padding: 2em;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: green;
display: none;
flex-direction: column;
align-items: center;
}
.profile *{
margin: 0;
}
.profile img{
margin: auto;
border-radius: 50%;
height: 100px; width: 100px;
}
.loader{
display: none;
height: 20px;
width: 20px;
border-radius: 50%;
border: 2px solid;
border-top-color: green;
margin: auto;
animation:loader 0.6s linear infinite;
}
@keyframes loader {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg)}
}
.change-them{
display: flex;
}