-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (76 loc) · 1.43 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
body {
font-family:Verdana, Geneva, Tahoma, sans-serif;
margin: 20px;
background-color: rgba(0, 0, 0, 0.803);
color: white;
}
p{
font-size: xx-large;
}
.container {
max-width: 700px;
margin: auto;
text-align: center;
}
.tagline{
font-size: large;
margin-top: -1rem;
}
textarea {
color: white;
background-color: rgba(255, 255, 255, 0.096);
max-width: 90%;
min-width: 90%;
padding: 10px;
margin: 10px 0;
max-height: 25vh;
min-height: 25vh;
border-radius: 10px;
border: none;
box-shadow: 0px 0px 10px black;
transition-duration: 0.2s;
}
#cycles{
max-height: 1rem;
min-height: 1rem;
}
button{
background-color: rgba(255, 255, 255, 0.204);
padding: 10px;
border-radius: 10px;
color: white;
width: 100px;
transition-duration: 0.2s;
border: none;
box-shadow: 0px 0px 10px black;
margin: 10px;
}
button:hover{
box-shadow: 0px 0px 0px black;
}
textarea:hover{
box-shadow: 0px 0px 0px black;
}
.dataverse{
margin-top: 40px;
display: flex;
bottom: 30px;
margin-left: 50%;
transform: translate(-50%);
justify-content: center;
}
a{
color: white;
text-decoration: none;
font-weight: 100;
margin-left: 5px;
font-size: 13px;
margin-top: 3px;
}
.logo{
height: 20px;
}
.info{
opacity: 0.6;
font-size: 10px;
}