-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (76 loc) · 1.55 KB
/
style.css
File metadata and controls
88 lines (76 loc) · 1.55 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
h1 {
font-family: "B Koodak";
font-size: 65px;
}
h3 {
font-size: large;
font-weight: bold;
color: #121FCF;
}
img {
width: 500px;
}
p {
margin: 0;
font-weight: bold;
background: #121FCF;
background: -webkit-linear-gradient(to right, #121FCF 0%, #CF1512 100%);
background: -moz-linear-gradient(to right, #121FCF 0%, #CF1512 100%);
background: linear-gradient(to right, #121FCF 0%, #CF1512 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.sf25 {
font-size: 25px;
}
.sf20 {
font-size: 20px;
}
.centered-text {
display: flex;
flex-direction: column;
align-items: center;
font-family: "Comic Sans MS";
line-height: inherit;
}
input {
font-family: inherit;
line-height: inherit;
width: 1000px;
padding: 10px 20px;
}
.button, .b {
cursor: pointer;
font-family: inherit;
line-height: inherit;
background-color: #ffffff;
padding: 10px 20px;
border: 2px solid #222;
color: #000000;
text-transform: uppercase;
transition: .2s background-color ease;
font-size: 13px;
font-weight: 600;
border-radius: 15%;
}
.button:hover, .button:active, .button:focus,
.b:hover, .b:active, .b:focus {
background-color: #222;
border: 2px solid #222;
color: #fff;
}
.day-mode {
background-color: white;
color: black;
}
.night-mode {
background-color: rgb(35, 35, 35);
color: white;
}
.emoji-button {
position: absolute;
top: 10px;
right: 10px;
font-size: 24px;
cursor: pointer;
}