-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (58 loc) · 1.13 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
body, html {
width: 100%;
height: 100%;
font-family: 'Montserrat', sans-serif;
}
body {
background: url(https://bureau.ru/var/files/img1532613761) no-repeat center center fixed;
background-size: cover;
}
.startup {
color: rgba(255, 255, 255, 0.95);
font-family: 'Montserrat', sans-serif;
font-size: 2em;
font-weight: bold;
transition: all 0.5s;
cursor: pointer;
}
.startup:hover {
transform: scale(1.05);
}
.btn-primary {
background-color: blue;
border-color: blue;
transition: all 0.5s;
}
.btn-primary:hover {
transform: scale(1.05);
background-color: purple;
border-color: purple;
border-width: 1px;
}
.btn {
font-weight: bold;
border-radius: 300px;
}
.logo {
text-align: center;
color: rgba(0, 0, 0, 0.5);
font-family: 'Montserrat', sans-serif;
font-weight: bold;
font-size: 2.4em;
cursor: pointer;
background-color: rgba(255, 255, 255, 0.2);
padding-bottom: 6px;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
}
footer {
clear: both;
text-align: center;
color: rgba(255, 255, 255, 0.8);
font-family: 'Montserrat', sans-serif;
font-weight: bold;
cursor: pointer;
}