-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
95 lines (83 loc) · 1.5 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
86
87
88
89
90
91
92
93
94
95
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
main{
align-items: center;
display: flex;
flex-direction: column;
height: 100vh;
justify-content: center;
width: 100vw;
}
h1{
color: #8338ec;
font-size: 8vh;
font-family: monospace;
font-weight: 300;
text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
h1{
font-size: 4vh;
text-align: center;
width: 80%;
}
}
.list{
height: 60%;
list-style-type: none;
margin-top: 10vh;
width: 50%;
}
@media only screen and (max-width: 768px) {
.list{
width: 90%;
}
}
.list li{
background-color: #8338ec;
border-radius: 1vh;
margin: 4vh auto;
padding: 2vh 0;
width: 50%;
}
@media only screen and (max-width: 768px) {
.list li{
width: 80%;
}
}
.btn-home{
color: white;
display: block;
font-family: Arial, Helvetica, sans-serif;
font-size: 3vh;
text-align: center;
text-decoration: none;
text-transform: uppercase;
transition: 0.3s;
width: 100%;
}
.list li:hover{
box-shadow: 0 0 10px #00000090;
}
.btn{
border: 2px solid #0077b6;
border-radius: 1vh;
color: #0077b6;
font-family: Arial, Helvetica, sans-serif;
font-size: 2vh;
margin: 0 1vh;
padding: 1vh 2vh;
text-decoration: none;
text-transform: uppercase;
transition: 0.3s;
}
.btn-brand{
background: #0077b6;
color: #fff;
}
.btn:hover{
box-shadow: 0 0 10px #00000060;
}