-
Notifications
You must be signed in to change notification settings - Fork 0
/
Page3.css
124 lines (100 loc) · 1.58 KB
/
Page3.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
121
122
123
124
body{
margin: 0;
padding: 0;
}
.line{
margin-top: 3%;
width: 98%;
height: 0px;
margin-left: 1%;
/* Dark mode/Secondary */
border: 1px solid #273152;
transform: rotate(-0.12deg);
}
.header{
width: 215px;
height: 38px;
margin-top: 2%;
margin-left: 5%;
font-family: 'Raleway';
font-style: normal;
font-weight: 500;
font-size: 2vw;
line-height: 38px;
text-align: center;
/* Text/Grey */
color: #1C1C1C;
/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;
}
.list{
text-align: center;
margin: 0 auto;
}
.list ul{
top: 14%;
/* Heading/32 */
text-align: center;
left:40%;
}
.list li{
display: inline-block;
padding-right:3%;
padding-left: 1%;
border-right: 2px solid;
}
.bi{
margin-right: 10px;
}
.progress{
width: 40%;
margin-left: 30%;
background-color: #115087;
color: #fff;
text-align: center;
border-radius: 4px;
}
.body{
margin-top:2%;
width: 80%;
height: 400px;
margin-left: 10%;
background: #F2F7FF;
border-radius: 8px;
}
.icon{
margin-top: 2%;
margin-left: 45%;
/* Main/Tertiary */
color: #27AE60;
}
.detail p{
width: 50%;
height: 52px;
font-family: 'Raleway';
font-style: normal;
font-weight: 500;
font-size: 22px;
line-height: 26px;
color: #115087;
top:20%;
/* Inside auto layout */
margin-left: 25%;
margin-top: 5%;
}
@media only screen and (max-width: 600px) {
.detail p{
font-size: 10px;
font-weight: bold;
}
.progress{
width:60%;
margin-left: 20%;
}
.header{
font-size: 4vw;
margin-left: 1%;
}
}