-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (47 loc) · 928 Bytes
/
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
[class|=title] {
color: red;
font-family: "Open Sans", sans-serif;
}
#service {
height: 400px;
width: 70vw;
background: radial-gradient(circle, red 20%, blue 30%, green 50%);
border: 5px dotted red;
margin-top: 40px;
}
body {
background: linear-gradient(to bottom, rgb(55, 25, 223), rgba(55, 25, 223, 0.4));
text-transform: uppercase;
text-align: left;
font-size: 1.15em;
font-family: "Lato", sans-serif;
}
.link {
color: purple;
text-align: left;
}
.link:hover {
color: red;
}
.italic {
font-style:oblique;
}
.container {
margin:10px;
background:white;
display: flex;
flex-direction: row;
width:70%;
height: 300px;
justify-content: center;
align-items: center;
}
.container-item {
color: white;
background:green;
width:70px;
text-align: center;
line-height: 70px;
margin:10px;
width: 20px;
}