-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (73 loc) · 1.47 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
78
79
80
81
82
83
84
85
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 30px;
background: linear-gradient(#0F5095 0%, #0371CA 50%, #2FB9EE 100%);
}
::-webkit-scrollbar-track {
background-color: #23272a;
}
body {
background-color: #23272a;
color: #ffffff;
}
p.title {
text-align: center;
color: #A6E9F4;
font-family: "Segoe UI";
font-size: xx-large;
}
img.logo {
display: block;
margin-top: 5%;
margin-left: 40%;
margin-right: 40%;
margin-bottom: 1%;
width: 20%;
border-radius: 10px;
}
img.first {
display: block;
margin-top: 10%;
margin-left: 10%;
margin-right: 10%;
margin-bottom: 10%;
width: 80%;
border-radius: 10px;
transition: 0.7s;
box-shadow: 0px 0px 5px #000000;
}
img.first:hover {
box-shadow: 0px 0px 10px #000000;
}
button {
border: none;
border-radius: 10px;
background: linear-gradient(to right, #0F5095 0%, #0371CA 50%, #2FB9EE 100%);
background-size: 200% auto;
transition: 0.7s;
padding: 2%;
box-shadow: 0px 0px 5px #000000;
color: #A6E9F4;
font-family: "Segoe UI";
font-size: medium;
}
button:hover {
background-position: right;
box-shadow: 0px 0px 10px #000000;
}
button:active, button:focus {
outline: none;
box-shadow: 0px 0px 0px #000000;
}
button.b1 {
margin-left: 10%;
margin-bottom: 10%;
float: left;
}
button.b2 {
margin-right: 10%;
margin-bottom: 10%;
float: right;
}