-
Notifications
You must be signed in to change notification settings - Fork 0
/
todostyle.css
122 lines (109 loc) · 2.21 KB
/
todostyle.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
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital@0;1&family=Pacifico&display=swap');
#option{
padding-right: 50%;
display: inline;
display: block;
}
table tr td{
border: 1px solid black;
border-style: collapse;
}
th{
background-image: linear-gradient(to right, #0F2027,#203A43,#2C5364);
}
#head{
text-align: center;
color: white;
font-size: 20px;
font-family: 'Lobster Two', cursive;
letter-spacing: 2px;
}
tr,td{
padding: 5px;
background: linear-gradient(to right,#0F2027,#203A43,#2C5364);
}
td{
color: white;
font-family: 'Lobster Two', cursive;
font-size: larger;
}
table{
margin-top: 2vW;
border: 2px solid black;
margin-left: 20%;
}
nav{
height: fit-content;
background-attachment: fixed;
width: 100%;
}
#btn1, #btn2{
width: 150px;
color: black;
background-color: white;
border-radius: 20px;
box-shadow: inset 0 0 0 0 rgb(150, 180, 68);
transition: ease-out .2s;
outline: none;
font-weight: bold;
/* border:1px solid black; */
margin-left: 40px;
margin-right: 5px;
margin-top: 7px;
}
#btn1:hover, #btn2:hover{
background-image: linear-gradient(90deg, #00C0FF 0%, #FFCF00 49%, #FC4F4F 80%, #00C0FF 100%);
animation:slidebg 5s linear infinite;
}
@keyframes slidebg {
to {
background-position:20vw;
}
}
#label{
font-size: large;
font-weight: 700;
font-family: cursive;
color: rgb(52, 12, 104);
}
#tag{
color: white;
text-decoration: none;
font-size: 2em;
font-family: 'Pacifico', cursive;
margin-left: 8%;
}
.title {
text-align: center;
}
/* div.circTxt {
allows for centering
display: inline-block;
adjust as needed
margin-bottom: 120px;
color: whitesmoke;
} */
@media screen and (min-width: 601px) {
table{
width: 60vw;
}
canvas{
width:500px;
}
#tit{
margin-top: -10%;
}
}
/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
table {
width: 68.66vw;
}
canvas{
width:450px;
}
h3{
margin-left:20%;
margin-bottom: 10%;
}
}