-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
82 lines (67 loc) · 1.03 KB
/
site.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
* {
font-family: sans-serif;
color: #cad3f5;
}
body {
max-width: 100%;
background-color: #24273a;
#background-image: linear-gradient(#5e81ac, #bf616a);
}
.right {
text-align: right;
}
img {
border-radius: 8px;
}
.box {
border-style: solid;
border-color: #e5e9f0;
background-image: linear-gradient(#5b6078, #363a4f);
border-radius: 25px;
margin: 50px;
padding: 50px;
display: inline-block;
width: 50%;
text-align: center;
transition: width 0.5s;
box-shadow: 5px 5px 10px black;
}
a {
text-decoration: none;
}
.box3 {
display: flex;
justify-content: center;
align-items: stretch;
align-content: stretch;
flex-direction: row;
}
.centered {
display: flex;
justify-content: center;
align-items: center;
}
.box:hover {
width: 60%;
}
.mauve {
border-color: #c6a0f6;
}
.red {
border-color: #ed8796;
}
.peach {
border-color: #f5a97f;
}
.yellow {
border-color: #eed49f;
}
.green {
border-color: #a6da95;
}
.teal {
border-color: #8bd5ca;
}
.sapphire {
border-color: #7dc4e4;
}