-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmaipage_style.css
120 lines (105 loc) · 2.16 KB
/
maipage_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
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
:root {
--primary-color:#403c55 ;
--secondary-color: #181625;
--accent-color: rgb(168, 118, 170);
}
body {
overflow: none;
background-color: var(--primary-color);
}
h1 {
font-family: "Montserrat", sans-serif;
color: white;
height: 0.15em;
width: 100%;
display: flex;
position: fixed;
align-items: center;
justify-content: center;
z-index: 2;
margin-top: 0.9cm;
}
h2 {
font-family: 'Orbitron', sans-serif;
position: relative;
bottom: 60px;
left: 260px;
color: white;
}
.navbar-fixed-top {
position: fixed;
left: 0px;
right: 0px;
top: 0px;
height: 75px;
background-color: var(--secondary-color);
z-index: 999;
}
.nav__item {
display: inline-block;
}
.nav__link {
padding: 15px;
color: white;
text-decoration: none;
border-bottom: 2px solid transparent;
border-top: 2px solid transparent;
transition: border-bottom-color 0.5s ease-out, border-top-color 0.5s ease-out;
}
.nav__link:hover {
color: white;
border-bottom-color: white;
border-top-color: white;
}
p {
width: 700px;
height: 90px;
text-align: center;
align-items: center;
justify-content: center;
color: white;
}
.para {
display: inline-block;
background-color: var(--accent-color);
border-radius: 20px;
text-align: center;
width: auto;
margin-left: 9cm;
}
.mySlides {
position: relative;
height: 300px;
width: 1200px;
margin-top: 5cm;
margin-right: 3cm;
margin-left: 3cm;
display: flex;
justify-content: center;
align-items: center;
}
.button {
height: 3.5em;
width: 10%;
padding: 8px;
margin: 1em auto;
position: relative;
border: none;
border-radius: 5px;
color: white;
text-transform: uppercase;
letter-spacing: 0.5em;
transition: all 0.2s cubic-bezier(.4, 0, .2, 1);
left: 458px;
bottom: 280px;
}
.button {
position: relative;
bottom: 40px;
margin-right: 5px;
}
.button:hover {
width: 12%;
letter-spacing: 0.8em;
background-color: var(--accent-color);
}